X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=toolchain%2Fgcc%2Fpatches%2F5.2.0%2F920-specs_nonfatal_getenv.patch;fp=toolchain%2Fgcc%2Fpatches%2F5.2.0%2F920-specs_nonfatal_getenv.patch;h=0000000000000000000000000000000000000000;hp=3d708f24c31c36edbb29404fb2b82eb886ed881e;hb=306f7f1fca693f37d9288dfca3cfb4ca9aa6ceff;hpb=03b15ae993ea069fea66600bba47f3afc4e80dd9 diff --git a/toolchain/gcc/patches/5.2.0/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/5.2.0/920-specs_nonfatal_getenv.patch deleted file mode 100644 index 3d708f24c3..0000000000 --- a/toolchain/gcc/patches/5.2.0/920-specs_nonfatal_getenv.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/gcc/gcc.c -+++ b/gcc/gcc.c -@@ -8807,8 +8807,10 @@ getenv_spec_function (int argc, const ch - - value = getenv (argv[0]); - if (!value) -- fatal_error (input_location, -- "environment variable %qs not defined", argv[0]); -+ { -+ warning (input_location, "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