diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch b/meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch new file mode 100644 index 0000000000..e2b18a4022 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch | |||
@@ -0,0 +1,21 @@ | |||
1 | # HG changeset patch | ||
2 | # Parent 600a8a422ccaf5627ad1f5a138e7398df2b9e9d8 | ||
3 | Get rid of ever-broken fixincludes on musl. | ||
4 | Upstream-Status: Pending | ||
5 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
6 | |||
7 | |||
8 | Index: gcc-4.9-20140316/fixincludes/mkfixinc.sh | ||
9 | =================================================================== | ||
10 | --- gcc-4.9-20140316.orig/fixincludes/mkfixinc.sh | ||
11 | +++ gcc-4.9-20140316/fixincludes/mkfixinc.sh | ||
12 | @@ -19,7 +19,8 @@ case $machine in | ||
13 | powerpc-*-eabi* | \ | ||
14 | powerpc-*-rtems* | \ | ||
15 | powerpcle-*-eabisim* | \ | ||
16 | - powerpcle-*-eabi* ) | ||
17 | + powerpcle-*-eabi* | \ | ||
18 | + *-musl* ) | ||
19 | # IF there is no include fixing, | ||
20 | # THEN create a no-op fixer and exit | ||
21 | (echo "#! /bin/sh" ; echo "exit 0" ) > ${target} | ||