diff options
author | Steven Knight <knight@baldmt.com> | 2010-01-19 20:10:01 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-01-19 20:10:01 (GMT) |
commit | 666c898393c5defb1e02d73eb7fd548982351644 (patch) | |
tree | ebdc97f18b08db41ac45953a3f57637fe23ec49c /src/engine/SCons | |
parent | a795a02888f1cec6db6841a96e94767eb6c14701 (diff) | |
download | SCons-666c898393c5defb1e02d73eb7fd548982351644.zip SCons-666c898393c5defb1e02d73eb7fd548982351644.tar.gz SCons-666c898393c5defb1e02d73eb7fd548982351644.tar.bz2 |
Issue 2540: Make the messages printed when checking for compilers
consistent w.r.t. "... " at the end of the message.
Diffstat (limited to 'src/engine/SCons')
-rw-r--r-- | src/engine/SCons/Conftest.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/Conftest.py b/src/engine/SCons/Conftest.py index e995e77..9210f87 100644 --- a/src/engine/SCons/Conftest.py +++ b/src/engine/SCons/Conftest.py @@ -157,7 +157,7 @@ def CheckCC(context): too, so that it can test against non working flags. """ - context.Display("Checking whether the C compiler works") + context.Display("Checking whether the C compiler works... ") text = """ int main() { @@ -177,7 +177,7 @@ def CheckSHCC(context): too, so that it can test against non working flags. """ - context.Display("Checking whether the (shared) C compiler works") + context.Display("Checking whether the (shared) C compiler works... ") text = """ int foo() { @@ -197,7 +197,7 @@ def CheckCXX(context): too, so that it can test against non working flags. """ - context.Display("Checking whether the C++ compiler works") + context.Display("Checking whether the C++ compiler works... ") text = """ int main() { @@ -217,7 +217,7 @@ def CheckSHCXX(context): too, so that it can test against non working flags. """ - context.Display("Checking whether the (shared) C++ compiler works") + context.Display("Checking whether the (shared) C++ compiler works... ") text = """ int main() { |