summaryrefslogtreecommitdiffstats
path: root/sources/binutils-006_better_file_error.patch
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-14 11:38:35 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-14 11:38:35 +0000
commitcb7d5b81c95c77ef42cdf6951b8f34ad50c75c04 (patch)
tree2d749eb3c52ee0eeab03e9d2df2d5a2b944e1d42 /sources/binutils-006_better_file_error.patch
parent5f92f5c9e9333b0b44b65568b5b2b347bee02899 (diff)
downloadbuildroot-novena-cb7d5b81c95c77ef42cdf6951b8f34ad50c75c04.tar.gz
buildroot-novena-cb7d5b81c95c77ef42cdf6951b8f34ad50c75c04.zip
Rework toolchain build to make it much more modular and
remove the redundant redundancy.
Diffstat (limited to 'sources/binutils-006_better_file_error.patch')
-rw-r--r--sources/binutils-006_better_file_error.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/sources/binutils-006_better_file_error.patch b/sources/binutils-006_better_file_error.patch
deleted file mode 100644
index 38ef52966..000000000
--- a/sources/binutils-006_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)