summaryrefslogtreecommitdiff
path: root/test/Command.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-10-09 03:23:36 +0000
committerSteven Knight <knight@baldmt.com>2004-10-09 03:23:36 +0000
commita538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5 (patch)
treee0e0d0df134f2f47857e0a202e6ea95e78552889 /test/Command.py
parent6f708d0ca8b7f61a1d7ba98a945e32b25417952d (diff)
downloadscons-a538b7dded2a3d4ff54fdc9598bb8c9578c7d7d5.tar.gz
Win32 portability fixes for tests.
Diffstat (limited to 'test/Command.py')
-rw-r--r--test/Command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Command.py b/test/Command.py
index 52668860..eddc1f5d 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)