mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[toolchain] gcc: fix getenv() patches for 4.4.7 and 4.5-linaro
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31489 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
if (!value)
|
||||
- fatal ("environment variable \"%s\" not defined", argv[0]);
|
||||
+ {
|
||||
+ warning (0, "environment variable \"%s\" not defined", argv[0]);
|
||||
+ error ("warning: environment variable \"%s\" not defined", argv[0]);
|
||||
+ value = "";
|
||||
+ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user