summaryrefslogtreecommitdiffstats
path: root/test/LIBPATH.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/LIBPATH.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/LIBPATH.py')
-rw-r--r--test/LIBPATH.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py
index 871437c..d0bb065 100644
--- a/test/LIBPATH.py
+++ b/test/LIBPATH.py
@@ -118,7 +118,7 @@ env1.Program(target = 'prog', source = prog)
env1.Library(target = './lib1/foo1', source = f1)
env2 = Environment(LIBS = 'foo2',
- LIBPATH = '. ./lib2')
+ LIBPATH = Split('. ./lib2'))
env2.Program(target = 'prog2', source = prog)
env2.Library(target = 'foo2', source = f1)
""")