summaryrefslogtreecommitdiffstats
path: root/test/CommandGenerator.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-05-02 12:16:24 (GMT)
committerSteven Knight <knight@baldmt.com>2002-05-02 12:16:24 (GMT)
commit14b0749ef9a6232ad1375f750baf00e0fea14e56 (patch)
treed8ee5ca620e66bb2cd782cb22bbc7cca0731a09d /test/CommandGenerator.py
parent35a9fe7b3a3575367b74fbaf84f5336ee4ca5573 (diff)
downloadSCons-14b0749ef9a6232ad1375f750baf00e0fea14e56.zip
SCons-14b0749ef9a6232ad1375f750baf00e0fea14e56.tar.gz
SCons-14b0749ef9a6232ad1375f750baf00e0fea14e56.tar.bz2
Fix for long-line LINKCOM signatures on WIN32; add a for_signature argument to command generators. (Charles Crain)
Diffstat (limited to 'test/CommandGenerator.py')
-rw-r--r--test/CommandGenerator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CommandGenerator.py b/test/CommandGenerator.py
index a85b07a..9a2a7c7 100644
--- a/test/CommandGenerator.py
+++ b/test/CommandGenerator.py
@@ -42,7 +42,7 @@ sys.exit(0)
""")
test.write('SConstruct', """
-def g(source, target, env):
+def g(source, target, for_signature, env):
import sys
python = sys.executable
return [[python, "build.py", "$TEMPFILE"] + source,