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/multiline.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/multiline.py')
-rw-r--r-- | test/multiline.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/multiline.py b/test/multiline.py index 7560d55..9b7ee61 100644 --- a/test/multiline.py +++ b/test/multiline.py @@ -42,9 +42,9 @@ sys.exit(0) """) test.write('SConstruct', """ -B1 = Builder(name = 'B1', action = [r'%s build.py .temp $sources', - r'%s build.py $targets .temp']) -B2 = Builder(name = 'B2', action = r'%s' + " build.py .temp $sources\\n" + r'%s' + " build.py $targets .temp") +B1 = Builder(name = 'B1', action = [r'%s build.py .temp $SOURCES', + r'%s build.py $TARGETS .temp']) +B2 = Builder(name = 'B2', action = r'%s' + " build.py .temp $SOURCES\\n" + r'%s' + " build.py $TARGETS .temp") env = Environment(BUILDERS = [B1, B2]) env.B1(target = 'foo1.out', source = 'foo1.in') env.B2(target = 'foo2.out', source = 'foo2.in') |