From 0ff9fe09d61de03fc5e5376fed0df6e5e6b67c04 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 17 Jul 2013 18:53:41 -0400 Subject: [PATCH] fix(coreos-base/libchrome): Fix building with sysroot-wrappers Tell the scons build to pass the PATH environment variable through. --- .../coreos-base/libchrome/files/SConstruct-180609 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/libchrome/files/SConstruct-180609 b/sdk_container/src/third_party/coreos-overlay/coreos-base/libchrome/files/SConstruct-180609 index 2ebb0658f3..90e91cd24b 100644 --- a/sdk_container/src/third_party/coreos-overlay/coreos-base/libchrome/files/SConstruct-180609 +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/libchrome/files/SConstruct-180609 @@ -167,7 +167,7 @@ env['CCFLAGS'] += ['-fPIC', '-I..'] # Fix issue with scons not passing some vars through the environment. -for key in Split('PKG_CONFIG SYSROOT'): +for key in Split('PATH PKG_CONFIG SYSROOT'): if os.environ.has_key(key): env['ENV'][key] = os.environ[key]