diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0041-libtool-avoid-libdir.patch | |
download | meta-linaro-dizzy-enea.tar.gz |
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0041-libtool-avoid-libdir.patch')
-rw-r--r-- | meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0041-libtool-avoid-libdir.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0041-libtool-avoid-libdir.patch b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.8/0041-libtool-avoid-libdir.patch new file mode 100644 index 0000000..2dd9610 --- /dev/null +++ b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-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 | ||