You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
446 B

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