diff options
author | Steven Knight <knight@baldmt.com> | 2004-09-19 23:08:50 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-09-19 23:08:50 (GMT) |
commit | 4ed25ffafd8f09ebd8b3f07d7ebfa15ca2ef8603 (patch) | |
tree | e0f1094b9735b22deac5d7f19e41d962fe3f10d0 /test/build-errors.py | |
parent | a965b2ed53e58047b417e28c41a0f0c0f98b82b7 (diff) | |
download | SCons-4ed25ffafd8f09ebd8b3f07d7ebfa15ca2ef8603.zip SCons-4ed25ffafd8f09ebd8b3f07d7ebfa15ca2ef8603.tar.gz SCons-4ed25ffafd8f09ebd8b3f07d7ebfa15ca2ef8603.tar.bz2 |
Win32 portability fixes for tests.
Diffstat (limited to 'test/build-errors.py')
-rw-r--r-- | test/build-errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/build-errors.py b/test/build-errors.py index f64786f..67dac20 100644 --- a/test/build-errors.py +++ b/test/build-errors.py @@ -189,7 +189,7 @@ else: test.write('SConstruct4', r""" env = Environment() -env.Command('test.out', 'test.in', 'cp $SOURCE $TARGET') +env.Command('test.out', 'test.in', Copy('$TARGET', '$SOURCE')) env.InstallAs('test2.out', 'test.out') # Mark test2.out as precious so we'll handle the exception in # FunctionAction() rather than when the target is cleaned before building. |