diff options
author | Steven Knight <knight@baldmt.com> | 2008-09-08 05:00:22 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-09-08 05:00:22 (GMT) |
commit | eb34b8365dac790235f8ff253571f1761f605163 (patch) | |
tree | e022adaf40a0377b4503150be6f2b9428df823de /test | |
parent | fb1881b7f6ee5fbabea37ef23d2c55a2eb43de71 (diff) | |
download | SCons-eb34b8365dac790235f8ff253571f1761f605163.zip SCons-eb34b8365dac790235f8ff253571f1761f605163.tar.gz SCons-eb34b8365dac790235f8ff253571f1761f605163.tar.bz2 |
Accommodate earlier change in the order of arguments on a Windows
compilation command line.
Diffstat (limited to 'test')
-rw-r--r-- | test/ToolSurrogate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ToolSurrogate.py b/test/ToolSurrogate.py index 527e3d3..5db156e 100644 --- a/test/ToolSurrogate.py +++ b/test/ToolSurrogate.py @@ -94,7 +94,7 @@ cc -o foo.exe foo.obj test.write('foo.c', "foo.c win32\n") test.run(arguments = '. platform=win32', stdout = test.wrap_stdout("""\ -cl /nologo /c foo.c /Fofoo.obj +cl /Fofoo.obj /c foo.c /nologo link /nologo /OUT:foo.exe foo.obj """)) |