summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-03-01 19:30:51 -0500
committerGary Oberbrunner <garyo@oberbrunner.com>2014-03-01 19:30:51 -0500
commita2ef1dd444eb8290863f84e19fdd72bddd210ae2 (patch)
tree10e984042b9c87854e9198c00b036f2ac22df4a4
parenteee9fcf49fac8b8bd3bf21f7d787261be80069e9 (diff)
parent1100f77a386554601697bda7ca3933af742058bb (diff)
downloadscons-a2ef1dd444eb8290863f84e19fdd72bddd210ae2.tar.gz
Merged in ptomulik/scons/conftest-messages (pull request #110)
Corrected messages displayed by Conftests
-rw-r--r--src/engine/SCons/Conftest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/Conftest.py b/src/engine/SCons/Conftest.py
index d4662780..e9702ff0 100644
--- a/src/engine/SCons/Conftest.py
+++ b/src/engine/SCons/Conftest.py
@@ -156,7 +156,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()
{
@@ -176,7 +176,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()
{
@@ -196,7 +196,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()
{
@@ -216,7 +216,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()
{