diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-11 23:13:20 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-11 23:13:20 (GMT) |
commit | 6f4f6e4639a3a4a796b28322ba07b9b81f2c354f (patch) | |
tree | bf1be1f8cebc4b016b9856f27d1cf84879b547be /test/Default.py | |
parent | 580b07ed247ab0de0ea96093fc2c4baa28c35c65 (diff) | |
download | SCons-6f4f6e4639a3a4a796b28322ba07b9b81f2c354f.zip SCons-6f4f6e4639a3a4a796b28322ba07b9b81f2c354f.tar.gz SCons-6f4f6e4639a3a4a796b28322ba07b9b81f2c354f.tar.bz2 |
Implement special variable substitution.
Diffstat (limited to 'test/Default.py')
-rw-r--r-- | test/Default.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Default.py b/test/Default.py index ccdc63b..515a9c0 100644 --- a/test/Default.py +++ b/test/Default.py @@ -40,7 +40,7 @@ file.close() """) test.write(['one', 'SConstruct'], """ -B = Builder(name = 'B', action = "python ../build.py %(target)s %(source)s") +B = Builder(name = 'B', action = "python ../build.py $target $sources") env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') @@ -48,7 +48,7 @@ Default('foo.out') """) test.write(['two', 'SConstruct'], """ -B = Builder(name = 'B', action = "python ../build.py %(target)s %(source)s") +B = Builder(name = 'B', action = "python ../build.py $target $sources") env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') @@ -56,7 +56,7 @@ Default('foo.out', 'bar.out') """) test.write(['three', 'SConstruct'], """ -B = Builder(name = 'B', action = "python ../build.py %(target)s %(source)s") +B = Builder(name = 'B', action = "python ../build.py $target $sources") env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') |