Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 1 | Avoid using libdir from .la which usually points to a host path |
| 2 | |
| 3 | Upstream-Status: Inappropriate [embedded specific] |
| 4 | Signed-off-by: Jonathan Liu <net147@gmail.com> |
| 5 | |
| 6 | diff --git a/ltmain.sh b/ltmain.sh |
| 7 | index a03433f..1902a90 100644 |
| 8 | --- a/ltmain.sh |
| 9 | +++ b/ltmain.sh |
| 10 | @@ -5628,6 +5628,9 @@ func_mode_link () |
| 11 | absdir="$abs_ladir" |
| 12 | libdir="$abs_ladir" |
| 13 | else |
| 14 | + # Instead of using libdir from .la which usually points to a host path, |
| 15 | + # use the path the .la is contained in. |
| 16 | + libdir="$abs_ladir" |
| 17 | dir="$libdir" |
| 18 | absdir="$libdir" |
| 19 | fi |