mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +01:00
2.5.2 was a beta, upstream made two stable releases since: https://savannah.gnu.org/news/?id=10676 https://savannah.gnu.org/news/?id=10693 Drop libtool/0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch (merged upstream) Apply the multilib patch unconditionally as it could be applied to add variants. For the other it was pointed out that it: "potentially has side effects for native builds. It breaks the ability to run files in the .libs directory which in the cross case we don't care about but some natives did once used to do that. The risk is they find host things instead." License-Update: change of FSF address to a URI (From OE-Core rev: 9a672faf21648c60d7ff29439bb236f3ac87100d) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
953 B
Diff
41 lines
953 B
Diff
From c04839effba0538c982422275c5cda5947aa0e85 Mon Sep 17 00:00:00 2001
|
|
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
Date: Tue, 3 Feb 2015 14:24:58 +0000
|
|
Subject: [PATCH 6/7] libtool: Fix tools path issues
|
|
|
|
If for example you build on a machine with /bin/grep, then restore that sstate
|
|
onto a machine with /usr/bin/grep, things will fail. Simply don't bother
|
|
hardcoding paths.
|
|
|
|
RP 2015/2/3
|
|
|
|
Upstream-Status: Inappropriate
|
|
---
|
|
libtoolize.in | 10 +++++-----
|
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/libtoolize.in b/libtoolize.in
|
|
index 6c15aa57..8beb670e 100644
|
|
--- a/libtoolize.in
|
|
+++ b/libtoolize.in
|
|
@@ -40,11 +40,11 @@
|
|
|
|
: ${AUTOCONF="autoconf"}
|
|
: ${AUTOMAKE="automake"}
|
|
-: ${EGREP="@EGREP@"}
|
|
-: ${FGREP="@FGREP@"}
|
|
-: ${GREP="@GREP@"}
|
|
-: ${LN_S="@LN_S@"}
|
|
-: ${SED="@SED@"}
|
|
+: ${EGREP="egrep"}
|
|
+: ${FGREP="fgrep"}
|
|
+: ${GREP="grep"}
|
|
+: ${LN_S="ln -s"}
|
|
+: ${SED="sed"}
|
|
|
|
|
|
## -------------------------- ##
|
|
--
|
|
2.39.5
|
|
|