diff options
Diffstat (limited to 'test/Command.py')
-rw-r--r-- | test/Command.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Command.py b/test/Command.py index 1f4a490..557b34e 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") |