Issue 2540: Make the messages printed when checking for compilers
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 19 Jan 2010 20:10:01 +0000 (20:10 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 19 Jan 2010 20:10:01 +0000 (20:10 +0000)
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
src/engine/SCons/Conftest.py

index c4f50dce7f547dc0cabb4590eb0b2b5dcf6ad9ab..4197fa4e3109883fa9ef37d9b9723d3be1e55ca3 100644 (file)
@@ -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.
index e995e77a8678955bf4583ee6067e6b1ab6370dd4..9210f87637ccb69bf3e8b80d6b76d29715227c3e 100644 (file)
@@ -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()
 {