summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-11-29 11:30:40 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-01 20:40:23 +0000
commitd8bee043cbd5c88a0ddca58868f8e4556ef8531c (patch)
treec87a785209b157adb90a735f85e27a9c85ecd17a /meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch
parent177b2e337a37a67fe3a8a40d3f0704b30117f9e2 (diff)
downloadpoky-d8bee043cbd5c88a0ddca58868f8e4556ef8531c.tar.gz
libtool: Upgrade from 2.4 -> 2.4.2
Rebased patches to the newer source code and deleted resolve-sysroot.patch since its already applied upstream merged libtool-2.4.2.inc & libtool.inc files replaced PR with ${INC_PR}.0 (From OE-Core rev: aa0cb889a4ef883235dc3f3e1d76ee4a556ae03a) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch')
-rw-r--r--meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch b/meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch
deleted file mode 100644
index 0341987326..0000000000
--- a/meta/recipes-devtools/libtool/libtool/resolve-sysroot.patch
+++ /dev/null
@@ -1,42 +0,0 @@
1Upstream-Status: Pending
2
3Sometimes .las have =/a/b/c.la in dependency_libs. This should be
4resolved to sysroot.
5
6-Khem Raj <raj.khem@gmail.com>
7
8Index: libtool-2.4/libltdl/config/ltmain.m4sh
9===================================================================
10--- libtool-2.4.orig/libltdl/config/ltmain.m4sh
11+++ libtool-2.4/libltdl/config/ltmain.m4sh
12@@ -8479,7 +8479,8 @@ EOF
13 *.la)
14 func_basename "$deplib"
15 name="$func_basename_result"
16- eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
17+ func_resolve_sysroot "$deplib"
18+ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
19 test -z "$libdir" && \
20 func_fatal_error "\`$deplib' is not a valid libtool archive"
21 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
22@@ -8505,7 +8506,9 @@ EOF
23 *.la)
24 func_basename "$lib"
25 name="$func_basename_result"
26- eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
27+ func_resolve_sysroot "$lib"
28+ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
29+
30 test -z "$libdir" && \
31 func_fatal_error "\`$lib' is not a valid libtool archive"
32 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
33@@ -8524,7 +8527,8 @@ EOF
34 # the library:
35 func_basename "$lib"
36 name="$func_basename_result"
37- eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
38+ func_resolve_sysroot "$lib"
39+ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
40 test -z "$libdir" && \
41 func_fatal_error "\`$lib' is not a valid libtool archive"
42 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"