diff options
author | Dirk Baechle <dl9obn@darc.de> | 2014-09-12 17:59:39 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2014-09-12 17:59:39 (GMT) |
commit | 2607d69b86683acd061491826b5bf304f552284d (patch) | |
tree | a125cf2fc6f5024c9919f4a992b318c1350f0304 /test/D/GDC.py | |
parent | 87cb9ca579c9e8cc2d972552f8db6590b991cdeb (diff) | |
parent | 70a6365e0bcf530819a83edaa3b9d9bbc08b218e (diff) | |
download | SCons-2607d69b86683acd061491826b5bf304f552284d.zip SCons-2607d69b86683acd061491826b5bf304f552284d.tar.gz SCons-2607d69b86683acd061491826b5bf304f552284d.tar.bz2 |
Merged in russel/scons (pull request #182), various fixes for the D tools and their tests
Diffstat (limited to 'test/D/GDC.py')
-rw-r--r-- | test/D/GDC.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/GDC.py b/test/D/GDC.py index e24ec43..b548b94 100644 --- a/test/D/GDC.py +++ b/test/D/GDC.py @@ -36,7 +36,7 @@ if not test.where_is('gdc'): test.write('SConstruct', """\ import os -env = Environment(tools=['link', 'gdc'], ENV=os.environ) +env = Environment(tools=['link', 'gdc']) if env['PLATFORM'] == 'cygwin': env['OBJSUFFIX'] = '.obj' # trick DMD env.Program('foo', 'foo.d') """) |