summaryrefslogtreecommitdiff
path: root/test/timestamp-fallback.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-05 23:35:56 +0000
committerSteven Knight <knight@baldmt.com>2002-06-05 23:35:56 +0000
commit2f7d4f660fd048edc342a989d25c94d7b52ab13e (patch)
tree20def5c6f0f7b68ab7151cac4ada5c470a3b31e0 /test/timestamp-fallback.py
parent42717c855f7cbb73d3017ac243a34491d3cc0c53 (diff)
downloadscons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.gz
Changes from Charles Crain.
Diffstat (limited to 'test/timestamp-fallback.py')
-rw-r--r--test/timestamp-fallback.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/timestamp-fallback.py b/test/timestamp-fallback.py
index 8f5e2624..f284afe5 100644
--- a/test/timestamp-fallback.py
+++ b/test/timestamp-fallback.py
@@ -51,8 +51,8 @@ os.environ['PYTHONPATH'] = test.workpath('.')
test.write('SConstruct', """
def build(env, target, source):
open(str(target[0]), 'wt').write(open(str(source[0]), 'rt').read())
-B = Builder(name = 'B', action = build)
-env = Environment(BUILDERS = [B])
+B = Builder(action = build)
+env = Environment(BUILDERS = { 'B' : B })
env.B(target = 'f1.out', source = 'f1.in')
env.B(target = 'f2.out', source = 'f2.in')
env.B(target = 'f3.out', source = 'f3.in')