diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.8/0041-libtool-avoid-libdir.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8/0041-libtool-avoid-libdir.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.8/0041-libtool-avoid-libdir.patch b/meta/recipes-devtools/gcc/gcc-4.8/0041-libtool-avoid-libdir.patch new file mode 100644 index 0000000000..2dd9610a2f --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.8/0041-libtool-avoid-libdir.patch | |||
@@ -0,0 +1,19 @@ | |||
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 | ||