Skip to content
Snippets Groups Projects
Commit a98cdd98 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

toolchain: add missing patch to gcc v4.8.0

SVN-Revision: 36511
parent a0b655b8
No related branches found
No related tags found
No related merge requests found
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -8003,7 +8003,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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment