summaryrefslogtreecommitdiff
path: root/test/Command.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-04-15 18:43:38 +0000
committerSteven Knight <knight@baldmt.com>2002-04-15 18:43:38 +0000
commita8176f609ff3ecc090f51830408d3b4dc6338d7e (patch)
treebab059042f2f8cbc85dcf7a619dbebbbe23dc4fb /test/Command.py
parent05029e336146444501a66b53e4699c09d6e08977 (diff)
downloadscons-a8176f609ff3ecc090f51830408d3b4dc6338d7e.tar.gz
Big change for shared libraries and a bunch of other flexibility. (Charles Crain)
Diffstat (limited to 'test/Command.py')
-rw-r--r--test/Command.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Command.py b/test/Command.py
index 1f4a4909..557b34e8 100644
--- a/test/Command.py
+++ b/test/Command.py
@@ -53,8 +53,8 @@ env.Command(target = 'f1.out', source = 'f1.in',
env.Command(target = 'f2.out', source = 'f2.in',
action = r'%s' + " build.py temp2 $SOURCES\\n" + r'%s' + " build.py $TARGET temp2")
env.Command(target = 'f3.out', source = 'f3.in',
- action = [r'%s build.py temp3 $SOURCES',
- r'%s build.py $TARGET temp3'])
+ action = [ [ r'%s', 'build.py', 'temp3', '$SOURCES' ],
+ [ r'%s', 'build.py', '$TARGET', 'temp3'] ])
""" % (python, python, python, python))
test.write('f1.in', "f1.in\n")