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/option--implicit-cache.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/option--implicit-cache.py')
-rw-r--r-- | test/option--implicit-cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option--implicit-cache.py b/test/option--implicit-cache.py index 6ebff3a..3460b2f 100644 --- a/test/option--implicit-cache.py +++ b/test/option--implicit-cache.py @@ -46,7 +46,7 @@ test = TestSCons.TestSCons() test.subdir('include', 'subdir', ['subdir', 'include'], 'inc2') test.write('SConstruct', """ -env = Environment(CPPPATH = 'inc2 include') +env = Environment(CPPPATH = Split('inc2 include')) obj = env.Object(target='prog', source='subdir/prog.c') env.Program(target='prog', source=obj) SConscript('subdir/SConscript', "env") |