summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorptomulik <ptomulik@meil.pw.edu.pl>2014-02-20 15:54:03 (GMT)
committerptomulik <ptomulik@meil.pw.edu.pl>2014-02-20 15:54:03 (GMT)
commitb0b61c331713e542ac958b88777afafd0d649fb4 (patch)
tree7dbef1cc5d55c85460a31e3beb5a22905d3aa4c2 /src
parentcb44210566c28d16c1e2c91d898306ad539fa9f5 (diff)
downloadSCons-b0b61c331713e542ac958b88777afafd0d649fb4.zip
SCons-b0b61c331713e542ac958b88777afafd0d649fb4.tar.gz
SCons-b0b61c331713e542ac958b88777afafd0d649fb4.tar.bz2
Corrected messages displayed by Conftestsconftest-messages
Diffstat (limited to 'src')
-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 d466278..e9702ff 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()
{