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/Configure.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/Configure.py')
-rw-r--r-- | test/Configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Configure.py b/test/Configure.py index eeb040d..78558fc 100644 --- a/test/Configure.py +++ b/test/Configure.py @@ -91,7 +91,7 @@ if not (r1 and r2 and r3 and r4 and r5 and r6): Exit(1) """ % (lib,lib)) - required_stdout = test.wrap_stdout(build_str='scons: "." is up to date.\n', + required_stdout = test.wrap_stdout(build_str="scons: `.' is up to date.\n", read_str= """Checking for main(); in library %s (header math.h) ... ok Checking for main(); in library None (header math.h) ... ok @@ -125,7 +125,7 @@ if not (not r1 and not r2): Exit(1) """) - required_stdout = test.wrap_stdout(build_str='scons: "." is up to date.\n', + required_stdout = test.wrap_stdout(build_str="scons: `.' is up to date.\n", read_str= """Checking for C header no_std_c_header.h ... failed Checking for main in library no_c_library_SAFFDG ... failed |