summaryrefslogtreecommitdiffstats
path: root/test/sconsign/script/Configure.py
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2014-09-11 19:42:56 (GMT)
committerRussel Winder <russel@winder.org.uk>2014-09-11 19:42:56 (GMT)
commitb068a00f91abb6e5f4282cdd7d85b20497108d2b (patch)
treea125cf2fc6f5024c9919f4a992b318c1350f0304 /test/sconsign/script/Configure.py
parent70a6365e0bcf530819a83edaa3b9d9bbc08b218e (diff)
parent87cb9ca579c9e8cc2d972552f8db6590b991cdeb (diff)
downloadSCons-b068a00f91abb6e5f4282cdd7d85b20497108d2b.zip
SCons-b068a00f91abb6e5f4282cdd7d85b20497108d2b.tar.gz
SCons-b068a00f91abb6e5f4282cdd7d85b20497108d2b.tar.bz2
Commit merge issues.
Diffstat (limited to 'test/sconsign/script/Configure.py')
-rw-r--r--test/sconsign/script/Configure.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/sconsign/script/Configure.py b/test/sconsign/script/Configure.py
index 3b43def..679f084 100644
--- a/test/sconsign/script/Configure.py
+++ b/test/sconsign/script/Configure.py
@@ -58,9 +58,8 @@ CC_file = re.escape(CC_file)
_sconf_temp_conftest_0_c = '.sconf_temp/conftest_0.c'
test.write('SConstruct', """
-env = Environment()
import os
-env.AppendENVPath('PATH', os.environ['PATH'])
+env = Environment(ENV={'PATH' : os.environ.get('PATH','')})
conf = Configure(env)
r1 = conf.CheckCHeader( 'math.h' )
env = conf.Finish()