summaryrefslogtreecommitdiff
path: root/arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p
diff options
context:
space:
mode:
Diffstat (limited to 'arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p')
-rw-r--r--arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p16
1 files changed, 0 insertions, 16 deletions
diff --git a/arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p b/arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p
deleted file mode 100644
index 3ad6372..0000000
--- a/arm-riscos-gnueabihf/recipes/patches/gccsdk/elf2aif-no-abi-check.p
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: elf2aif/src/elf2aif.c
-===================================================================
---- elf2aif/src/elf2aif.c (revision 7698)
-+++ elf2aif/src/elf2aif.c (working copy)
-@@ -201,7 +201,11 @@
- return EXIT_FAILURE;
- }
-
-+#ifndef __ARM_EABI__
- if (elf_ehdr.e_ident[EI_OSABI] != ELFOSABI_ARM)
-+#else
-+ if (elf_ehdr.e_ident[EI_OSABI] != ELFOSABI_NONE)
-+#endif
- {
- fprintf (stderr, "ELF file '%s' is not for ARM\n", elf_filename);
- return EXIT_FAILURE;