diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-03-19 15:20:56 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2014-05-05 23:08:17 -0700 |
commit | d4573cb750bfde488682244d30266dfe675bac06 (patch) | |
tree | b4fc3cc055bc83455eb306dc19e1e310bd2a48fc /meta/recipes-devtools/gcc/gcc-4.9/0041-libtool-avoid-libdir.patch | |
parent | 2f922357287129f7d216393531886ed1f3ce8185 (diff) | |
download | openembedded-core-d4573cb750bfde488682244d30266dfe675bac06.tar.gz openembedded-core-d4573cb750bfde488682244d30266dfe675bac06.tar.bz2 openembedded-core-d4573cb750bfde488682244d30266dfe675bac06.zip |
gcc: Add 4.9 recipes
(From OE-Core rev: f051216ea373f166016b15bbd2a2a6f136430372)
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 @@ +Avoid using libdir from .la which usually points to a host path + +Upstream-Status: Inappropriate [embedded specific] +Signed-off-by: Jonathan Liu <net147@gmail.com> + +diff --git a/ltmain.sh b/ltmain.sh +index a03433f..1902a90 100644 +--- a/ltmain.sh ++++ b/ltmain.sh +@@ -5628,6 +5628,9 @@ func_mode_link () + absdir="$abs_ladir" + libdir="$abs_ladir" + else ++ # Instead of using libdir from .la which usually points to a host path, ++ # use the path the .la is contained in. ++ libdir="$abs_ladir" + dir="$libdir" + absdir="$libdir" + fi |