diff options
Diffstat (limited to 'test/Default.py')
-rw-r--r-- | test/Default.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Default.py b/test/Default.py index 96d786a..5f8aff8 100644 --- a/test/Default.py +++ b/test/Default.py @@ -63,7 +63,7 @@ B = Builder(action = r'%s ../build.py $TARGET $SOURCES') env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') -Default('foo.out bar.out') +Default(Split('foo.out bar.out')) """ % python) test.write(['four', 'SConstruct'], """ |