Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: src/platform/autox/SConstruct

Issue 661156: Change autox scons to get more environment variables (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/autox/SConstruct
diff --git a/src/platform/autox/SConstruct b/src/platform/autox/SConstruct
index e4c4565ad62fde8576492fb77002a345a8882b0c..5ca4c58833cbfd6858aa3271af17cf2fb93527fc 100644
--- a/src/platform/autox/SConstruct
+++ b/src/platform/autox/SConstruct
@@ -16,8 +16,8 @@ for key in Split('CFLAGS CCFLAGS CPPPATH LIBPATH'):
if not env.get('CCFLAGS'):
env.Append(CCFLAGS=Split('-I.. -Wall -Werror -O3'))
-# Fix issue with scons not passing pkg-config vars through the environment.
-for key in Split('PKG_CONFIG_LIBDIR PKG_CONFIG_PATH'):
+# Fix issue with scons not passing some vars through the environment.
+for key in Split('PKG_CONFIG_LIBDIR PKG_CONFIG_PATH SYSROOT'):
if os.environ.has_key(key):
env['ENV'][key] = os.environ[key]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698