summaryrefslogtreecommitdiffstats
path: root/test/LINKFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-07-18 17:52:21 (GMT)
committerSteven Knight <knight@baldmt.com>2003-07-18 17:52:21 (GMT)
commita7405b2115ba873ade35ebf16ade8736548b9a99 (patch)
treece8cd516e0efe27115c4b199a430fa890aca4f47 /test/LINKFLAGS.py
parenta9f60545d3546413077ef9b9a78b5337b57c8399 (diff)
downloadSCons-a7405b2115ba873ade35ebf16ade8736548b9a99.zip
SCons-a7405b2115ba873ade35ebf16ade8736548b9a99.tar.gz
SCons-a7405b2115ba873ade35ebf16ade8736548b9a99.tar.bz2
Add a script to print .sconsign file contents.
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')