Accommodate earlier change in the order of arguments on a Windows
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 8 Sep 2008 05:00:22 +0000 (05:00 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 8 Sep 2008 05:00:22 +0000 (05:00 +0000)
compilation command line.

git-svn-id: http://scons.tigris.org/svn/scons/trunk@3372 fdb21ef1-2011-0410-befe-b5e4ea1792b1

test/ToolSurrogate.py

index 527e3d33571dac23284d8f1b6b72356a00e8e47d..5db156ea27778ee300d7308411712b1c49094867 100644 (file)
@@ -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
 """))