summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-10-23 18:55:33 (GMT)
committerSteven Knight <knight@baldmt.com>2004-10-23 18:55:33 (GMT)
commit35a89330d1df50811fc6912df0047148b1d98450 (patch)
tree683414a1b9cbe71e95504b794a6439142f58f946 /test
parent8fc56d4098128552043f581cb50074426a149959 (diff)
downloadSCons-35a89330d1df50811fc6912df0047148b1d98450.zip
SCons-35a89330d1df50811fc6912df0047148b1d98450.tar.gz
SCons-35a89330d1df50811fc6912df0047148b1d98450.tar.bz2
Allow substitution of (Levi Stephen) and other construction variables used by various Tools.
Diffstat (limited to 'test')
-rw-r--r--test/JAR.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/JAR.py b/test/JAR.py
index e0634be..cec6c5b 100644
--- a/test/JAR.py
+++ b/test/JAR.py
@@ -103,7 +103,8 @@ env = Environment(tools = ['jar'],
JARFLAGS='cvf')
env.Jar(target = 'classes.jar', source = [ 'testdir/bar.class',
'foo.mf' ],
- JARCHDIR='testdir')
+ TESTDIR='testdir',
+ JARCHDIR='$TESTDIR')
""" % (python))
test.subdir('testdir')