diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-14 19:29:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-14 19:29:01 (GMT) |
commit | 3ab7670a45179b7a09eabc219842f6c224ad35da (patch) | |
tree | aca25fd119f68b44fa181a90bd535bfdfb01fed5 /test/SConsignFile.py | |
parent | 1c2ac0f2ca0c14d1181add9cc66d9650fece1481 (diff) | |
download | SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.zip SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.tar.gz SCons-3ab7670a45179b7a09eabc219842f6c224ad35da.tar.bz2 |
Make more Environment methods from global functions.
Diffstat (limited to 'test/SConsignFile.py')
-rw-r--r-- | test/SConsignFile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/SConsignFile.py b/test/SConsignFile.py index 29f2af2..606f20b 100644 --- a/test/SConsignFile.py +++ b/test/SConsignFile.py @@ -77,7 +77,8 @@ test.fail_test(os.path.exists(test.workpath('work1', 'subdir', '.sconsign'))) # test.write(['work2', 'SConstruct'], """ -SConsignFile('my_sconsign') +e = Environment(XXX = 'scons') +e.SConsignFile('my_${XXX}ign') B = Builder(action = "%s ../build.py $TARGETS $SOURCES") env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'f5.out', source = 'f5.in') |