From 674f99954091856a67c532d17248df6c59b9394d Mon Sep 17 00:00:00 2001 From: Scott Garman Date: Wed, 22 Dec 2010 09:56:46 -0800 Subject: binutils: delete unused patches These patches are not used by any current binutils recipe. Signed-off-by: Scott Garman --- .../binutils/files/better_file_error.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 meta/recipes-devtools/binutils/files/better_file_error.patch (limited to 'meta/recipes-devtools/binutils/files/better_file_error.patch') diff --git a/meta/recipes-devtools/binutils/files/better_file_error.patch b/meta/recipes-devtools/binutils/files/better_file_error.patch deleted file mode 100644 index 38ef52966..000000000 --- a/meta/recipes-devtools/binutils/files/better_file_error.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -urN binutils-2.11.92.0.5/bfd/opncls.c binutils-2.11.92.0.5.new/bfd/opncls.c ---- binutils-2.11.92.0.5/bfd/opncls.c Mon Oct 1 18:25:21 2001 -+++ binutils-2.11.92.0.5.new/bfd/opncls.c Sat Oct 13 11:26:59 2001 -@@ -127,6 +127,13 @@ - { - bfd *nbfd; - const bfd_target *target_vec; -+ struct stat s; -+ -+ if (stat (filename, &s) == 0) -+ if (S_ISDIR(s.st_mode)) { -+ bfd_set_error (bfd_error_file_not_recognized); -+ return NULL; -+ } - - nbfd = _bfd_new_bfd (); - if (nbfd == NULL) -- cgit v1.2.3