summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch')
-rw-r--r--meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch b/meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch
new file mode 100644
index 0000000000..bcb372bbc1
--- /dev/null
+++ b/meta/recipes-devtools/libtool/libtool/0007-libtool-Fix-problem-with-libtoolize-in-multilib.patch
@@ -0,0 +1,34 @@
1From 083cf39140cd894ea306b67411d6088c13a9e286 Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Mon, 30 Jul 2018 17:00:01 +0000
4Subject: [PATCH 7/7] libtool: Fix problem with libtoolize in multilib
5
6Without this patch /usr/bin/libtoolize is different for each multilib
7since their host-triplets are different, despite there being no difference in
8the functionality of libtoolize itself.
9
10Ugly, but just patch this out. This fixes issues where libtool and
11libXX-libtool couldn't be installed into the same system.
12
13Upstream-Status: Inappropriate
14RP 2018/7/30
15---
16 libtoolize.in | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/libtoolize.in b/libtoolize.in
20index 8beb670e..c89a093c 100644
21--- a/libtoolize.in
22+++ b/libtoolize.in
23@@ -139,7 +139,7 @@ You must 'cd' to the top directory of your package before you run
24 When reporting a bug, please describe a test case to reproduce it and
25 include the following information:
26
27- host-triplet: @host_triplet@
28+ host-triplet <redacted>
29 version: $progname $scriptversion
30 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
31 autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
32--
332.39.5
34