diff options
Diffstat (limited to 'test/SConsignFile/explicit-dbm-module.py')
-rw-r--r-- | test/SConsignFile/explicit-dbm-module.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/SConsignFile/explicit-dbm-module.py b/test/SConsignFile/explicit-dbm-module.py index 09b75aef7..2461d5cf4 100644 --- a/test/SConsignFile/explicit-dbm-module.py +++ b/test/SConsignFile/explicit-dbm-module.py @@ -3,6 +3,7 @@ # MIT License # # Copyright The SCons Foundation +# # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including @@ -47,8 +48,8 @@ sys.exit(0) test.write('SConstruct', """ import %(use_db)s SConsignFile(dbm_module=%(use_db)s) -B = Builder(action=r'%(_python_)s build.py $TARGETS $SOURCES') DefaultEnvironment(tools=[]) +B = Builder(action=r'%(_python_)s build.py $TARGETS $SOURCES') env = Environment(BUILDERS={'B': B}, tools=[]) env.B(target='f1.out', source='f1.in') env.B(target='f2.out', source='f2.in') |