mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
4b83f1fef9
Minor bugfix upgrade to gcc 5.3 for detailed list of fixes in 5.3 see https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&list_id=132738&resolution=FIXED&target_milestone=5.3 (From OE-Core rev: 8b664a7d6bba89a8221d7fd1a52915fef0002d71) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
844 B
Diff
32 lines
844 B
Diff
From 08a0e45b308fc97d06f5c3ef77a257e7a6bd1a48 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 20 Feb 2015 09:39:38 +0000
|
|
Subject: [PATCH 28/46] 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>
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
ltmain.sh | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/ltmain.sh b/ltmain.sh
|
|
index 0121fba..52bdbdb 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
|
|
--
|
|
2.6.3
|
|
|