diff options
author | Steven Knight <knight@baldmt.com> | 2003-06-18 18:35:59 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-06-18 18:35:59 (GMT) |
commit | 311058e447522c96a320b81bc8beaca41112c006 (patch) | |
tree | e4c8fae81af049dcb0319f978b24bb28d12df714 /etc/TestSCons.py | |
parent | b61917920644e58ab48cad87dabc19f9db6f0a64 (diff) | |
download | SCons-311058e447522c96a320b81bc8beaca41112c006.zip SCons-311058e447522c96a320b81bc8beaca41112c006.tar.gz SCons-311058e447522c96a320b81bc8beaca41112c006.tar.bz2 |
Change the double quotes around an up-to-date target to be like Make.
Diffstat (limited to 'etc/TestSCons.py')
-rw-r--r-- | etc/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index f23c5da..786b394 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -258,7 +258,7 @@ class TestSCons(TestCmd.TestCmd): def up_to_date(self, options = None, arguments = None, **kw): s = "" for arg in string.split(arguments): - s = s + 'scons: "%s" is up to date.\n' % arg + s = s + "scons: `%s' is up to date.\n" % arg if options: arguments = options + " " + arguments kw['arguments'] = arguments |