summaryrefslogtreecommitdiffstats
path: root/test/CPPPATH.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-11 22:19:47 (GMT)
committerSteven Knight <knight@baldmt.com>2002-06-11 22:19:47 (GMT)
commitd1b81f58263a824ca39ecc179f61ad541c5a0f7a (patch)
treeb4e55595b7253b73970bcb4b2b1e1cc1eeaeee8f /test/CPPPATH.py
parent9298969ebb3bfbb7c2c27b6f3352b26113361faf (diff)
downloadSCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.zip
SCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.tar.gz
SCons-d1b81f58263a824ca39ecc179f61ad541c5a0f7a.tar.bz2
Remove white-space split of file name lists.
Diffstat (limited to 'test/CPPPATH.py')
-rw-r--r--test/CPPPATH.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CPPPATH.py b/test/CPPPATH.py
index d09ecb8..a2cae10 100644
--- a/test/CPPPATH.py
+++ b/test/CPPPATH.py
@@ -163,7 +163,7 @@ test.up_to_date(arguments = args)
# Change CPPPATH and make sure we don't rebuild because of it.
test.write('SConstruct', """
-env = Environment(CPPPATH = 'inc2 include')
+env = Environment(CPPPATH = Split('inc2 include'))
obj = env.Object(target='foobar/prog', source='subdir/prog.c')
env.Program(target='prog', source=obj)
SConscript('subdir/SConscript', "env")