summaryrefslogtreecommitdiffstats
path: root/test/LINKFLAGS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/LINKFLAGS.py')
-rw-r--r--test/LINKFLAGS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LINKFLAGS.py b/test/LINKFLAGS.py
index 58efcf3..047ddc7 100644
--- a/test/LINKFLAGS.py
+++ b/test/LINKFLAGS.py
@@ -44,7 +44,7 @@ os.system(string.join(sys.argv[1:], " "))
test.write('SConstruct', """
foo = Environment()
-link = foo.Dictionary('LINK')
+link = foo.subst("$LINK")
bar = Environment(LINK = '', LINKFLAGS = r'%s wrapper.py ' + link)
foo.Program(target = 'foo', source = 'foo.c')
bar.Program(target = 'bar', source = 'bar.c')