mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
gcc: Update to version 5.4.0, change maintainer
Signed-off-by: Noble Pepper <noblepepper@gmail.com>
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
--- a/gcc/gcc.c
|
||||
+++ b/gcc/gcc.c
|
||||
@@ -8003,7 +8003,10 @@ getenv_spec_function (int argc, const ch
|
||||
@@ -8807,8 +8807,10 @@ getenv_spec_function (int argc, const ch
|
||||
|
||||
value = getenv (argv[0]);
|
||||
if (!value)
|
||||
- fatal_error ("environment variable %qs not defined", argv[0]);
|
||||
- fatal_error (input_location,
|
||||
- "environment variable %qs not defined", argv[0]);
|
||||
+ {
|
||||
+ warning (0, "environment variable %qs not defined", argv[0]);
|
||||
+ warning (input_location, "environment variable %qs not defined", argv[0]);
|
||||
+ value = "";
|
||||
+ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user