summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-01-19 20:10:01 (GMT)
committerSteven Knight <knight@baldmt.com>2010-01-19 20:10:01 (GMT)
commit666c898393c5defb1e02d73eb7fd548982351644 (patch)
treeebdc97f18b08db41ac45953a3f57637fe23ec49c /src
parenta795a02888f1cec6db6841a96e94767eb6c14701 (diff)
downloadSCons-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')
-rw-r--r--src/CHANGES.txt8
-rw-r--r--src/engine/SCons/Conftest.py8
2 files changed, 10 insertions, 6 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index c4f50dc..4197fa4 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 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()
{