diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-03-19 15:20:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-06 17:59:15 +0100 |
commit | 3d094751c8712f6805f9303c75471ccd26be304e (patch) | |
tree | ad71efcdabe984882e814e5d775ba743adadb1c7 /meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch | |
parent | 7b78c364b7de901f97cd8dbe56d5e02f545bf3d3 (diff) | |
download | poky-3d094751c8712f6805f9303c75471ccd26be304e.tar.gz |
gcc: Add 4.9 recipes
(From OE-Core rev: f051216ea373f166016b15bbd2a2a6f136430372)
(From OE-Core rev: d4573cb750bfde488682244d30266dfe675bac06)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch b/meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch new file mode 100644 index 0000000000..2dd9610a2f --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.9/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 | ||