d67979b9d6
This is the final bugfix release in the gcc-5 series. Compile and run tested on macOS 10.13 (Xcode 9), mvebu/ar71xx. Removed redundant patch for macOS (backported upstream by yours truly) Signed-off-by: Ryan Mounce <ryan@mounce.com.au>
16 lines
479 B
Diff
16 lines
479 B
Diff
--- a/gcc/gcc.c
|
|
+++ b/gcc/gcc.c
|
|
@@ -8828,8 +8828,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
|