summaryrefslogtreecommitdiffstats
path: root/test/D/DMD2_Alt.py
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2014-09-05 17:46:26 (GMT)
committerRussel Winder <russel@winder.org.uk>2014-09-05 17:46:26 (GMT)
commit074a3c0d96b7a02284b3c67d837d3753731e68c8 (patch)
treed28cb71b241205bdb29930ca534a4ea9001ec626 /test/D/DMD2_Alt.py
parent6d0ecf897b6e2ac2429d0e5ced2f8fe9cf29cdc5 (diff)
downloadSCons-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.py2
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')
""")