diff options
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.patch | 34 |
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 @@ | |||
1 | From 083cf39140cd894ea306b67411d6088c13a9e286 Mon Sep 17 00:00:00 2001 | ||
2 | From: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
3 | Date: Mon, 30 Jul 2018 17:00:01 +0000 | ||
4 | Subject: [PATCH 7/7] libtool: Fix problem with libtoolize in multilib | ||
5 | |||
6 | Without this patch /usr/bin/libtoolize is different for each multilib | ||
7 | since their host-triplets are different, despite there being no difference in | ||
8 | the functionality of libtoolize itself. | ||
9 | |||
10 | Ugly, but just patch this out. This fixes issues where libtool and | ||
11 | libXX-libtool couldn't be installed into the same system. | ||
12 | |||
13 | Upstream-Status: Inappropriate | ||
14 | RP 2018/7/30 | ||
15 | --- | ||
16 | libtoolize.in | 2 +- | ||
17 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
18 | |||
19 | diff --git a/libtoolize.in b/libtoolize.in | ||
20 | index 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 | -- | ||
33 | 2.39.5 | ||
34 | |||