summaryrefslogtreecommitdiff
path: root/test/option-i.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/option-i.py
parentae1737265e92978dd851292340d21af6e2269196 (diff)
downloadscons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz
Make the (s) and variables upper-case.
Diffstat (limited to 'test/option-i.py')
-rw-r--r--test/option-i.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option-i.py b/test/option-i.py
index 89915504..d572be6a 100644
--- a/test/option-i.py
+++ b/test/option-i.py
@@ -46,8 +46,8 @@ sys.exit(1)
""")
test.write('SConstruct', """
-Succeed = Builder(name = "Succeed", action = r'%s succeed.py $targets')
-Fail = Builder(name = "Fail", action = r'%s fail.py $targets')
+Succeed = Builder(name = "Succeed", action = r'%s succeed.py $TARGETS')
+Fail = Builder(name = "Fail", action = r'%s fail.py $TARGETS')
env = Environment(BUILDERS = [Succeed, Fail])
env.Fail(target = 'aaa.1', source = 'aaa.in')
env.Succeed(target = 'aaa.out', source = 'aaa.1')