summaryrefslogtreecommitdiffstats
path: root/test/LIBPATH.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-12-03 14:42:35 (GMT)
committerSteven Knight <knight@baldmt.com>2002-12-03 14:42:35 (GMT)
commitcf8c7c1a70d630deb1d1f7c0e43b40a783787e10 (patch)
tree90f0b6f7a2ebd8b2fe544c9e2ab02c20410ae3a7 /test/LIBPATH.py
parentbda7af53f40111daabfbcbb07e745e0afce95d2f (diff)
downloadSCons-cf8c7c1a70d630deb1d1f7c0e43b40a783787e10.zip
SCons-cf8c7c1a70d630deb1d1f7c0e43b40a783787e10.tar.gz
SCons-cf8c7c1a70d630deb1d1f7c0e43b40a783787e10.tar.bz2
Support variable substitution on scanner directories. (Charles Crain)
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r--test/LIBPATH.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py
index 51b2998..f122519 100644
--- a/test/LIBPATH.py
+++ b/test/LIBPATH.py
@@ -47,7 +47,8 @@ prog2 = test.workpath(lib_ + 'shlib') + _dll
test.write('SConstruct', """
env1 = Environment(LIBS = [ 'foo1' ],
- LIBPATH = [ './lib1' ])
+ LIBPATH = [ '$FOO' ],
+ FOO='./lib1')
f1 = env1.Object('f1', 'f1.c')