diff options
| author | Russel Winder <russel@winder.org.uk> | 2014-09-14 16:31:35 (GMT) |
|---|---|---|
| committer | Russel Winder <russel@winder.org.uk> | 2014-09-14 16:31:35 (GMT) |
| commit | 2f5f1e802fb142bd4e1ebfc45e1ddc30ac84dfa8 (patch) | |
| tree | 77ecd3a970e83504c8121b6aff5f3b506822db30 | |
| parent | b4a7c2ef597d5659c67468cdac7705554f08e94c (diff) | |
| download | SCons-2f5f1e802fb142bd4e1ebfc45e1ddc30ac84dfa8.zip SCons-2f5f1e802fb142bd4e1ebfc45e1ddc30ac84dfa8.tar.gz SCons-2f5f1e802fb142bd4e1ebfc45e1ddc30ac84dfa8.tar.bz2 | |
Remove the incorrect Windows type label.
| -rw-r--r-- | test/D/SharedObjects/Common/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/SharedObjects/Common/common.py b/test/D/SharedObjects/Common/common.py index a5d7b27..0362525 100644 --- a/test/D/SharedObjects/Common/common.py +++ b/test/D/SharedObjects/Common/common.py @@ -62,7 +62,7 @@ def testForTool(tool): elif platform == 'darwin': filename = 'code.o' libraryname = 'libanswer.dylib' - elif platform == 'win32' or platform == 'win64': + elif platform == 'win32': filename = 'code.obj' libraryname = 'answer.dll' else: |
