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 /test/up-to-date.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 'test/up-to-date.py')
-rw-r--r-- | test/up-to-date.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/up-to-date.py b/test/up-to-date.py index 8311444..460401a 100644 --- a/test/up-to-date.py +++ b/test/up-to-date.py @@ -58,9 +58,10 @@ test.write('f4.in', "f4.in\n") test.run(arguments = 'f1.out f3.out') test.run(arguments = 'f1.out f2.out f3.out f4.out', stdout = -test.wrap_stdout("""scons: "f1.out" is up to date. +test.wrap_stdout("""\ +scons: `f1.out' is up to date. %s build.py f2.out f2.in -scons: "f3.out" is up to date. +scons: `f3.out' is up to date. %s build.py f4.out f4.in """ % (python, python))) |