From 1523af93325d010697ee4ca14104fa0547f689e9 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Tue, 19 Jan 2010 20:10:01 +0000 Subject: [PATCH] Issue 2540: Make the messages printed when checking for compilers consistent w.r.t. "... " at the end of the message. git-svn-id: http://scons.tigris.org/svn/scons/trunk@4640 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- src/CHANGES.txt | 8 ++++++-- src/engine/SCons/Conftest.py | 8 ++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/CHANGES.txt b/src/CHANGES.txt index c4f50dce..4197fa4e 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -8,15 +8,19 @@ -RELEASE 1.2.0.d20100117 - Sun, 17 Jan 2010 14:26:59 -0800 +RELEASE X.X.X - XXX From Luca Falavigna: - Fix typos in the man page. + From Steven Knight: + - Make the messages for Configure checks of compilers consistent. -RELEASE X.X.X - XXX + + +RELEASE 1.2.0.d20100117 - Sun, 17 Jan 2010 14:26:59 -0800 From Jim Randall: - Fixed temp filename race condition on Windows with long cmd lines. diff --git a/src/engine/SCons/Conftest.py b/src/engine/SCons/Conftest.py index e995e77a..9210f876 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() { -- 2.26.2