diff options
author | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:46:26 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:46:26 (GMT) |
commit | 074a3c0d96b7a02284b3c67d837d3753731e68c8 (patch) | |
tree | d28cb71b241205bdb29930ca534a4ea9001ec626 /test/D/DMD2_Alt.py | |
parent | 6d0ecf897b6e2ac2429d0e5ced2f8fe9cf29cdc5 (diff) | |
download | SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.zip SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.tar.gz SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.tar.bz2 |
Remove the setting of the ENV property to os.environ.
Diffstat (limited to 'test/D/DMD2_Alt.py')
-rw-r--r-- | test/D/DMD2_Alt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/DMD2_Alt.py b/test/D/DMD2_Alt.py index fbe2f2b..27b21d0 100644 --- a/test/D/DMD2_Alt.py +++ b/test/D/DMD2_Alt.py @@ -36,7 +36,7 @@ if not test.where_is('dmd') and not test.where_is('gdmd'): test.write('SConstruct', """\ import os -env = Environment(tools=['dmd', 'link'], ENV=os.environ) +env = Environment(tools=['dmd', 'link']) if env['PLATFORM'] == 'cygwin': env['OBJSUFFIX'] = '.obj' # trick DMD env.Program('foo', 'foo.d') """) |