diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-5.3/0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-5.3/0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-5.3/0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch b/meta/recipes-devtools/gcc/gcc-5.3/0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch new file mode 100644 index 0000000000..ddb0fc4f40 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-5.3/0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 047116e8c9cbb340264f4f28db3f21a68ba57ff3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 8 Dec 2015 08:32:24 +0000 | ||
4 | Subject: [PATCH 46/46] Get rid of ever-broken fixincludes on musl. | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | fixincludes/mkfixinc.sh | 3 ++- | ||
10 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/fixincludes/mkfixinc.sh b/fixincludes/mkfixinc.sh | ||
13 | index 6653fedb..0d96c8c 100755 | ||
14 | --- a/fixincludes/mkfixinc.sh | ||
15 | +++ b/fixincludes/mkfixinc.sh | ||
16 | @@ -19,7 +19,8 @@ case $machine in | ||
17 | powerpc-*-eabi* | \ | ||
18 | powerpc-*-rtems* | \ | ||
19 | powerpcle-*-eabisim* | \ | ||
20 | - powerpcle-*-eabi* ) | ||
21 | + powerpcle-*-eabi* | \ | ||
22 | + *-musl* ) | ||
23 | # IF there is no include fixing, | ||
24 | # THEN create a no-op fixer and exit | ||
25 | (echo "#! /bin/sh" ; echo "exit 0" ) > ${target} | ||
26 | -- | ||
27 | 2.6.3 | ||
28 | |||