diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-24 10:06:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-24 10:06:27 +0000 |
commit | fc2bd072607fbe53ce14af3ac1867784f2c9a81d (patch) | |
tree | 36dca9aa48cb1bb4d96ec787e530d77a3c5be677 /toolchain/gcc/patches/4.4.7/920-specs_nonfatal_getenv.patch | |
parent | 2450985de9b4e47c77b57c1fd9469d43d1c43636 (diff) | |
download | mtk-20170518-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.zip mtk-20170518-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.gz mtk-20170518-fc2bd072607fbe53ce14af3ac1867784f2c9a81d.tar.bz2 |
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.patch | 14 |
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 359c577..0000000 --- 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 |