diff options
author | Steven Knight <knight@baldmt.com> | 2004-10-09 03:23:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-10-09 03:23:36 (GMT) |
commit | a538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5 (patch) | |
tree | e0e0d0df134f2f47857e0a202e6ea95e78552889 /test/Command.py | |
parent | 6f708d0ca8b7f61a1d7ba98a945e32b25417952d (diff) | |
download | SCons-a538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5.zip SCons-a538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5.tar.gz SCons-a538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5.tar.bz2 |
Win32 portability fixes for tests.
Diffstat (limited to 'test/Command.py')
-rw-r--r-- | test/Command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Command.py b/test/Command.py index 5266886..eddc1f5 100644 --- a/test/Command.py +++ b/test/Command.py @@ -65,7 +65,7 @@ def sub(env, target, source): t.close() return 0 -env = Environment(COPY_THROUGH_TEMP = "cp $SOURCE .tmp\\ncp .tmp $TARGET", +env = Environment(COPY_THROUGH_TEMP = "%(python)s build.py .tmp $SOURCE\\n%(python)s build.py $TARGET .tmp", EXPAND = "$COPY_THROUGH_TEMP") env.Command(target = 'f1.out', source = 'f1.in', action = buildIt) |