diff options
author | Russel Winder <russel@winder.org.uk> | 2014-09-11 19:42:56 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-09-11 19:42:56 (GMT) |
commit | b068a00f91abb6e5f4282cdd7d85b20497108d2b (patch) | |
tree | a125cf2fc6f5024c9919f4a992b318c1350f0304 /test/sconsign/script/Configure.py | |
parent | 70a6365e0bcf530819a83edaa3b9d9bbc08b218e (diff) | |
parent | 87cb9ca579c9e8cc2d972552f8db6590b991cdeb (diff) | |
download | SCons-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.py | 3 |
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() |