Root/
| 1 | --- a/gcc/gcc.c |
| 2 | +++ b/gcc/gcc.c |
| 3 | @@ -8583,7 +8583,10 @@ getenv_spec_function (int argc, const ch |
| 4 | |
| 5 | value = getenv (argv[0]); |
| 6 | if (!value) |
| 7 | - fatal ("environment variable \"%s\" not defined", argv[0]); |
| 8 | + { |
| 9 | + error ("warning: environment variable \"%s\" not defined", argv[0]); |
| 10 | + value = ""; |
| 11 | + } |
| 12 | |
| 13 | /* We have to escape every character of the environment variable so |
| 14 | they are not interpreted as active spec characters. A |
| 15 |
