diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-09-30 21:36:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-09-30 21:36:28 +0000 |
commit | cb119e2a69ddf235255398175ecaba7d8081b775 (patch) | |
tree | b4d530ae2a45f90e96e4f955c8ffdc759d7ab3ee /toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch | |
parent | 1637363e95163a4643ffa285a38f9e6fc8b25b8f (diff) | |
download | mtk-20170518-cb119e2a69ddf235255398175ecaba7d8081b775.zip mtk-20170518-cb119e2a69ddf235255398175ecaba7d8081b775.tar.gz mtk-20170518-cb119e2a69ddf235255398175ecaba7d8081b775.tar.bz2 |
gcc: add 4.9-linaro based on the 2014.09 release
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42706
Diffstat (limited to 'toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch')
-rw-r--r-- | toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch new file mode 100644 index 0000000..1c0b34e --- /dev/null +++ b/toolchain/gcc/patches/4.9-linaro/920-specs_nonfatal_getenv.patch @@ -0,0 +1,14 @@ +--- a/gcc/gcc.c ++++ b/gcc/gcc.c +@@ -8106,7 +8106,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 |