diff options
Diffstat (limited to 'test/CPPPATH.py')
-rw-r--r-- | test/CPPPATH.py | 2 |
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") |