Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 1 | From 08752c2f1d21553301bee5757c453c6a36cbe03c Mon Sep 17 00:00:00 2001 |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Fri, 20 Feb 2015 09:39:38 +0000 |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 4 | Subject: [PATCH] Avoid using libdir from .la which usually points to a host |
| 5 | path |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 6 | |
| 7 | Upstream-Status: Inappropriate [embedded specific] |
| 8 | |
| 9 | Signed-off-by: Jonathan Liu <net147@gmail.com> |
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 11 | --- |
| 12 | ltmain.sh | 3 +++ |
| 13 | 1 file changed, 3 insertions(+) |
| 14 | |
| 15 | diff --git a/ltmain.sh b/ltmain.sh |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 16 | index ee938056bef..9ebc7e3d1e0 100644 |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 17 | --- a/ltmain.sh |
| 18 | +++ b/ltmain.sh |
| 19 | @@ -5628,6 +5628,9 @@ func_mode_link () |
| 20 | absdir="$abs_ladir" |
| 21 | libdir="$abs_ladir" |
| 22 | else |
| 23 | + # Instead of using libdir from .la which usually points to a host path, |
| 24 | + # use the path the .la is contained in. |
| 25 | + libdir="$abs_ladir" |
| 26 | dir="$libdir" |
| 27 | absdir="$libdir" |
| 28 | fi |