diff options
author | Steven Knight <knight@baldmt.com> | 2002-04-17 20:17:55 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-04-17 20:17:55 (GMT) |
commit | 82b0db2c19ef714da4e95095c8dee8c32fc294ac (patch) | |
tree | a56895982a621f2d3806c841eea8dba89b97369a /test/long-lines.py | |
parent | 181de357174cc9663407256408c813c344e6bd9b (diff) | |
download | SCons-82b0db2c19ef714da4e95095c8dee8c32fc294ac.zip SCons-82b0db2c19ef714da4e95095c8dee8c32fc294ac.tar.gz SCons-82b0db2c19ef714da4e95095c8dee8c32fc294ac.tar.bz2 |
Fix win32LinkGenerator.
Diffstat (limited to 'test/long-lines.py')
-rw-r--r-- | test/long-lines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/long-lines.py b/test/long-lines.py index 6df229c..bde101a 100644 --- a/test/long-lines.py +++ b/test/long-lines.py @@ -40,7 +40,7 @@ test.write('SConstruct', """ linkflags = r'%s' while len(linkflags) <= 8100: linkflags = linkflags + r' %s' -env = Environment(LINKFLAGS = linkflags) +env = Environment(LINKFLAGS = '$LINKXXX', LINKXXX = linkflags) env.Program(target = 'foo', source = 'foo.c') """ % (linkflag, linkflag)) |