diff options
author | Steven Knight <knight@baldmt.com> | 2002-06-05 23:35:56 +0000 |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-06-05 23:35:56 +0000 |
commit | 2f7d4f660fd048edc342a989d25c94d7b52ab13e (patch) | |
tree | 20def5c6f0f7b68ab7151cac4ada5c470a3b31e0 /test/up-to-date.py | |
parent | 42717c855f7cbb73d3017ac243a34491d3cc0c53 (diff) | |
download | scons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.gz |
Changes from Charles Crain.
Diffstat (limited to 'test/up-to-date.py')
-rw-r--r-- | test/up-to-date.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/up-to-date.py b/test/up-to-date.py index bc183881..3db10476 100644 --- a/test/up-to-date.py +++ b/test/up-to-date.py @@ -42,8 +42,8 @@ file.close() """) test.write('SConstruct', """ -B = Builder(name = "B", action = r'%s build.py $TARGETS $SOURCES') -env = Environment(BUILDERS = [B]) +B = Builder(action = r'%s build.py $TARGETS $SOURCES') +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') |