summaryrefslogtreecommitdiffstats
path: root/test/ENV.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ENV.py')
-rw-r--r--test/ENV.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ENV.py b/test/ENV.py
index 1ff699d..50032df 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 $sources")
+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')