summaryrefslogtreecommitdiff
path: root/test/Default.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-11 22:19:47 +0000
committerSteven Knight <knight@baldmt.com>2002-06-11 22:19:47 +0000
commitd1b81f58263a824ca39ecc179f61ad541c5a0f7a (patch)
treeb4e55595b7253b73970bcb4b2b1e1cc1eeaeee8f /test/Default.py
parent9298969ebb3bfbb7c2c27b6f3352b26113361faf (diff)
downloadscons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.tar.gz
Remove white-space split of file name lists.
Diffstat (limited to 'test/Default.py')
-rw-r--r--test/Default.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Default.py b/test/Default.py
index 96d786ab..5f8aff8c 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'], """