diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-31 03:47:18 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-31 03:47:18 (GMT) |
commit | 00c3ada748b164ecf909727fa81f521dde72fda9 (patch) | |
tree | 123feebbeb8fd1ea7c4dbc0de3cd81b0e5f6f8ad /test/Default.py | |
parent | ae1737265e92978dd851292340d21af6e2269196 (diff) | |
download | SCons-00c3ada748b164ecf909727fa81f521dde72fda9.zip SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.bz2 |
Make the (s) and variables upper-case.
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 9155660..93e6be6 100644 --- a/test/Default.py +++ b/test/Default.py @@ -43,7 +43,7 @@ file.close() """) test.write(['one', 'SConstruct'], """ -B = Builder(name = 'B', action = r'%s ../build.py $target $sources') +B = Builder(name = 'B', action = r'%s ../build.py $TARGET $SOURCES') env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') @@ -51,7 +51,7 @@ Default('foo.out') """ % python) test.write(['two', 'SConstruct'], """ -B = Builder(name = 'B', action = r'%s ../build.py $target $sources') +B = Builder(name = 'B', action = r'%s ../build.py $TARGET $SOURCES') env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') @@ -59,7 +59,7 @@ Default('foo.out', 'bar.out') """ % python) test.write(['three', 'SConstruct'], """ -B = Builder(name = 'B', action = r'%s ../build.py $target $sources') +B = Builder(name = 'B', action = r'%s ../build.py $TARGET $SOURCES') env = Environment(BUILDERS = [B]) env.B(target = 'foo.out', source = 'foo.in') env.B(target = 'bar.out', source = 'bar.in') |