summaryrefslogtreecommitdiff
path: root/test/Command.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 +0000
committerSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 +0000
commit00c3ada748b164ecf909727fa81f521dde72fda9 (patch)
tree123feebbeb8fd1ea7c4dbc0de3cd81b0e5f6f8ad /test/Command.py
parentae1737265e92978dd851292340d21af6e2269196 (diff)
downloadscons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz
Make the (s) and variables upper-case.
Diffstat (limited to 'test/Command.py')
-rw-r--r--test/Command.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Command.py b/test/Command.py
index e9d74528..2b704fc1 100644
--- a/test/Command.py
+++ b/test/Command.py
@@ -42,12 +42,12 @@ file.close()
test.write('SConstruct', """
env = Environment()
env.Command(target = 'f1.out', source = 'f1.in',
- action = r'%s build.py $target $sources')
+ action = r'%s build.py $TARGET $SOURCES')
env.Command(target = 'f2.out', source = 'f2.in',
- action = r'%s' + " build.py temp2 $sources\\n" + r'%s' + " build.py $target temp2")
+ action = r'%s' + " build.py temp2 $SOURCES\\n" + r'%s' + " build.py $TARGET temp2")
env.Command(target = 'f3.out', source = 'f3.in',
- action = [r'%s build.py temp3 $sources',
- r'%s build.py $target temp3'])
+ action = [r'%s build.py temp3 $SOURCES',
+ r'%s build.py $TARGET temp3'])
# Eventually, add ability to do execute Python code.
""" % (python, python, python, python, python))