diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-03-25 04:14:28 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-03-25 04:14:28 (GMT) |
commit | 22d352500f1cd6bd0c53d788a5dc44a1fefa676e (patch) | |
tree | 0984fd581082c27cfbfbb7f94d5751b0e6fd2741 /test/MSVC/batch.py | |
parent | 75ac32ac8e32076e25b72a19eb56340cc585fa4e (diff) | |
download | SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.zip SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.tar.gz SCons-22d352500f1cd6bd0c53d788a5dc44a1fefa676e.tar.bz2 |
Move 2.0 changes collected in branches/pending back to trunk for further
development. Note that this set of changes is NOT backward-compatible;
the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
Diffstat (limited to 'test/MSVC/batch.py')
-rw-r--r-- | test/MSVC/batch.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/MSVC/batch.py b/test/MSVC/batch.py index 0ab116c..f089b60 100644 --- a/test/MSVC/batch.py +++ b/test/MSVC/batch.py @@ -40,7 +40,6 @@ _python_ = TestSCons._python_ test.write('fake_cl.py', """\ import os -import string import sys input_files = sys.argv[2:] if sys.argv[1][-1] in (os.sep, '\\\\'): @@ -56,17 +55,16 @@ else: # Delay writing the .log output until here so any trailing slash or # backslash has been stripped, and the output comparisons later in this # script don't have to account for the difference. -open('fake_cl.log', 'ab').write(string.join(sys.argv[1:]) + '\\n') +open('fake_cl.log', 'ab').write(" ".join(sys.argv[1:]) + '\\n') for infile in input_files: if dir: - outfile = os.path.join(dir, string.replace(infile, '.c', '.obj')) + outfile = os.path.join(dir, infile.replace('.c', '.obj')) else: outfile = output open(outfile, 'wb').write(open(infile, 'rb').read()) """) test.write('fake_link.py', """\ -import string import sys ofp = open(sys.argv[1], 'wb') for infile in sys.argv[2:]: |