summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-10 21:10:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-10 21:10:53 +0000
commitf7939f5e74edf5e504c609fd852ff163c67d6e36 (patch)
treee1a4217a1d60fc9dafd00f277993754d570780e9 /toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch
parent795cab69b3acef4f8eb5ae0f421ef6427b2d5c9b (diff)
downloadmaster-31e0f0ae-f7939f5e74edf5e504c609fd852ff163c67d6e36.tar.gz
master-31e0f0ae-f7939f5e74edf5e504c609fd852ff163c67d6e36.tar.bz2
master-31e0f0ae-f7939f5e74edf5e504c609fd852ff163c67d6e36.zip
gcc: remove version 4.6, it is no longer needed
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47443
Diffstat (limited to 'toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch')
-rw-r--r--toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch
deleted file mode 100644
index 0b241faf05..0000000000
--- a/toolchain/gcc/patches/4.6-linaro/920-specs_nonfatal_getenv.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -7830,7 +7830,10 @@ getenv_spec_function (int argc, const ch
-
- value = getenv (argv[0]);
- if (!value)
-- fatal_error ("environment variable %qs not defined", argv[0]);
-+ {
-+ warning (0, "environment variable %qs not defined", argv[0]);
-+ value = "";
-+ }
-
- /* We have to escape every character of the environment variable so
- they are not interpreted as active spec characters. A