diff options
author | Steven Knight <knight@baldmt.com> | 2003-07-18 17:52:21 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-07-18 17:52:21 (GMT) |
commit | a7405b2115ba873ade35ebf16ade8736548b9a99 (patch) | |
tree | ce8cd516e0efe27115c4b199a430fa890aca4f47 /test/LINKFLAGS.py | |
parent | a9f60545d3546413077ef9b9a78b5337b57c8399 (diff) | |
download | SCons-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.py | 2 |
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') |