blob: ad1d1d4eb0aef5dc97618fe8e03d36a0db71092d [file] [log] [blame]
Brad Bishopc68388fc2019-08-26 01:33:31 -04001From 09d9ccc1d471020949d1285a5276f17504fd60dd Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 20 Feb 2015 09:39:38 +0000
Brad Bishopc68388fc2019-08-26 01:33:31 -04004Subject: [PATCH 17/36] Avoid using libdir from .la which usually points to a
Brad Bishopc342db32019-05-15 21:57:59 -04005 host path
6
7Upstream-Status: Inappropriate [embedded specific]
8
9Signed-off-by: Jonathan Liu <net147@gmail.com>
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 ltmain.sh | 3 +++
13 1 file changed, 3 insertions(+)
14
15diff --git a/ltmain.sh b/ltmain.sh
16index 8e222f7c16b..0a93b4e5c3b 100644
17--- a/ltmain.sh
18+++ b/ltmain.sh
19@@ -5628,6 +5628,9 @@ func_mode_link ()
20 absdir="$abs_ladir"
21 libdir="$abs_ladir"
22 else
23+ # Instead of using libdir from .la which usually points to a host path,
24+ # use the path the .la is contained in.
25+ libdir="$abs_ladir"
26 dir="$libdir"
27 absdir="$libdir"
28 fi
29--
Brad Bishopc68388fc2019-08-26 01:33:31 -0400302.22.1
Brad Bishopc342db32019-05-15 21:57:59 -040031