From d1a50627af1d59ebab634db983c4a197340ee171 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Thu, 1 May 2008 16:55:51 +0000 Subject: [PATCH] remove binutils patch, fix already in latest snapshot --- dkarm-eabi/patches/binutils-2.18.50.patch | 26 ----------------------- 1 file changed, 26 deletions(-) delete mode 100644 dkarm-eabi/patches/binutils-2.18.50.patch diff --git a/dkarm-eabi/patches/binutils-2.18.50.patch b/dkarm-eabi/patches/binutils-2.18.50.patch deleted file mode 100644 index 89c91ff..0000000 --- a/dkarm-eabi/patches/binutils-2.18.50.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- binutils-2.18.50_org/binutils/objdump.c Sat Mar 1 07:19:06 2008 -+++ binutils-2.18.50/binutils/objdump.c Thu Mar 13 12:29:47 2008 -@@ -70,6 +70,14 @@ - - #include - -+#ifndef O_BINARY -+#ifdef _O_BINARY -+#define O_BINARY _O_BINARY -+#else -+#define O_BINARY 0 -+#endif -+#endif -+ - /* Internal headers for the ELF .stab-dump code - sorry. */ - #define BYTES_IN_WORD 32 - #include "aout/aout64.h" -@@ -975,7 +983,7 @@ - #endif - const char *map; - struct stat st; -- int fd = open (fn, O_RDONLY); -+ int fd = open (fn, O_RDONLY | O_BINARY); - - if (fd < 0) - return NULL;