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/Library.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/Library.py')
-rw-r--r-- | test/Library.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Library.py b/test/Library.py index f13dad3..adbb334 100644 --- a/test/Library.py +++ b/test/Library.py @@ -32,7 +32,7 @@ test.write('SConstruct', """ env = Environment(LIBS = [ 'foo1', 'foo2' ], LIBPATH = [ '.' ]) env.Library(target = 'foo1', source = 'f1.c') -env.Library(target = 'foo2', source = 'f2a.c f2b.c f2c.c') +env.Library(target = 'foo2', source = Split('f2a.c f2b.c f2c.c')) libtgt=env.Library(target = 'foo3', source = ['f3a.c', 'f3b.c', 'f3c.c']) env.Program(target = 'prog', source = [ 'prog.c', libtgt ]) """) |