aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2012-11-21 20:27:15 +0000
committerFlorian Fainelli <florian@openwrt.org>2012-11-21 20:27:15 +0000
commitbca3953ee5f178303ed835f66784a4cb21f7c8cd (patch)
tree7bf8a5d04ed627dfbaf6ebc8aef999ea8f63a442 /toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch
parentf1498531c78466ab07c1c2b1cc788f2689e9b18e (diff)
downloadupstream-bca3953ee5f178303ed835f66784a4cb21f7c8cd.tar.gz
upstream-bca3953ee5f178303ed835f66784a4cb21f7c8cd.tar.bz2
upstream-bca3953ee5f178303ed835f66784a4cb21f7c8cd.zip
gcc: remove support for 4.7.0
There are no good reasons for keeping this version around when 4.7.2 and 4.7-linaro are there. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34296
Diffstat (limited to 'toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch')
-rw-r--r--toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch
deleted file mode 100644
index 0f2a8704fe..0000000000
--- a/toolchain/gcc/patches/4.7.0/920-specs_nonfatal_getenv.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -7814,7 +7814,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