diff options
author | Steven Knight <knight@baldmt.com> | 2003-10-07 03:37:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-10-07 03:37:15 (GMT) |
commit | 4f8244d481caa54c663a24d9efdf4c0a592230fc (patch) | |
tree | 2cdd57b3af09c7b1a81eac837b4ef7b65e0a8418 /etc | |
parent | b462ddcce80024755db7fbd667c9fb122dad98c9 (diff) | |
download | SCons-4f8244d481caa54c663a24d9efdf4c0a592230fc.zip SCons-4f8244d481caa54c663a24d9efdf4c0a592230fc.tar.gz SCons-4f8244d481caa54c663a24d9efdf4c0a592230fc.tar.bz2 |
Support using Dirs as sources for builds. (Charles Crain)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/TestSCons.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index ede575d..e0139f9 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -280,9 +280,9 @@ class TestSCons(TestCmd.TestCmd): if options: arguments = options + " " + arguments kw['arguments'] = arguments - stdout = self.wrap_stdout(build_str="("+s+"[^\n]*\n)*") - stdout = string.replace(stdout,'\n','\\n') - stdout = string.replace(stdout,'.','\\.') + kw['stdout'] = self.wrap_stdout(build_str="("+s+"[^\n]*\n)*") + kw['stdout'] = string.replace(kw['stdout'],'\n','\\n') + kw['stdout'] = string.replace(kw['stdout'],'.','\\.') old_match_func = self.match_func self.match_func = TestCmd.match_re_dotall apply(self.run, [], kw) |