aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-03-24 10:06:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-03-24 10:06:27 +0000
commitfc2bd072607fbe53ce14af3ac1867784f2c9a81d (patch)
tree36dca9aa48cb1bb4d96ec787e530d77a3c5be677 /toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch
parent2450985de9b4e47c77b57c1fd9469d43d1c43636 (diff)
downloadupstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.gz
upstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.bz2
upstream-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.zip
gcc: remove 4.4.7 (only used by avr32)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44957
Diffstat (limited to 'toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch')
-rw-r--r--toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch
deleted file mode 100644
index 359c577397..0000000000
--- a/toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -7855,7 +7855,10 @@ getenv_spec_function (int argc, const ch
-
- value = getenv (argv[0]);
- if (!value)
-- fatal ("environment variable \"%s\" not defined", argv[0]);
-+ {
-+ error ("warning: environment variable \"%s\" 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