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/CPPFLAGS.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/CPPFLAGS.py')
-rw-r--r-- | test/CPPFLAGS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py index 977d9ff..9c0295c 100644 --- a/test/CPPFLAGS.py +++ b/test/CPPFLAGS.py @@ -110,7 +110,7 @@ env = Environment(CPPFLAGS = '-x', CC = r'%s mygcc.py cc', CXX = r'%s mygcc.py c++', F77 = r'%s mygcc.py g77') -env.Program(target = 'foo', source = 'test1.c test2.cpp test3.F') +env.Program(target = 'foo', source = Split('test1.c test2.cpp test3.F')) """ % (python, python, python, python)) test.write('test1.c', r"""test1.c |