diff options
author | Steven Knight <knight@baldmt.com> | 2002-06-11 22:19:47 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-06-11 22:19:47 (GMT) |
commit | d1b81f58263a824ca39ecc179f61ad541c5a0f7a (patch) | |
tree | b4e55595b7253b73970bcb4b2b1e1cc1eeaeee8f /test/Program.py | |
parent | 9298969ebb3bfbb7c2c27b6f3352b26113361faf (diff) | |
download | SCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.zip SCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.tar.gz SCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.tar.bz2 |
Remove white-space split of file name lists.
Diffstat (limited to 'test/Program.py')
-rw-r--r-- | test/Program.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Program.py b/test/Program.py index 197f21c..5e1f259 100644 --- a/test/Program.py +++ b/test/Program.py @@ -44,7 +44,7 @@ foo_args = 'foo1%s foo2%s foo3%s' % (_exe, _exe, _exe) test.write('SConstruct', """ env = Environment() env.Program(target = 'foo1', source = 'f1.c') -env.Program(target = 'foo2', source = 'f2a.c f2b.c f2c.c') +env.Program(target = 'foo2', source = Split('f2a.c f2b.c f2c.c')) env.Program(target = 'foo3', source = ['f3a.c', 'f3b.c', 'f3c.c']) """) |