diff options
Diffstat (limited to 'test/ENV.py')
-rw-r--r-- | test/ENV.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ENV.py b/test/ENV.py index cedb4ac..db51327 100644 --- a/test/ENV.py +++ b/test/ENV.py @@ -40,7 +40,7 @@ test.write('SConstruct', """ import os bin1_path = r'%s' + os.pathsep + os.environ['PATH'] bin2_path = r'%s' + os.pathsep + os.environ['PATH'] -Bld = Builder(name = 'Bld', action = "build.py %%(target)s %%(source)s") +Bld = Builder(name = 'Bld', action = "build.py $target $sources") bin1 = Environment(ENV = {'PATH' : bin1_path}, BUILDERS = [Bld]) bin2 = Environment(ENV = {'PATH' : bin2_path}, BUILDERS = [Bld]) bin1.Bld(target = 'bin1.out', source = 'input') |