diff options
Diffstat (limited to 'test/option-q.py')
-rw-r--r-- | test/option-q.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option-q.py b/test/option-q.py index 6e72a26..efb192a 100644 --- a/test/option-q.py +++ b/test/option-q.py @@ -43,8 +43,8 @@ file.close() """) test.write('SConstruct', """ -B = Builder(name='B', action='%s build.py $TARGET $SOURCES') -env = Environment(BUILDERS = [B]) +B = Builder(action='%s build.py $TARGET $SOURCES') +env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'aaa.out', source = 'aaa.in') env.B(target = 'bbb.out', source = 'bbb.in') """ % python) |