diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2014-03-02 00:30:51 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2014-03-02 00:30:51 (GMT) |
commit | db488b77880b062b1875c22b9a226f09c4330808 (patch) | |
tree | 10e984042b9c87854e9198c00b036f2ac22df4a4 | |
parent | 9f48ff3d0e3decef0ee6a2fe02194ec367094401 (diff) | |
parent | b0b61c331713e542ac958b88777afafd0d649fb4 (diff) | |
download | SCons-db488b77880b062b1875c22b9a226f09c4330808.zip SCons-db488b77880b062b1875c22b9a226f09c4330808.tar.gz SCons-db488b77880b062b1875c22b9a226f09c4330808.tar.bz2 |
Merged in ptomulik/scons/conftest-messages (pull request #110)
Corrected messages displayed by Conftests
-rw-r--r-- | src/engine/SCons/Conftest.py | 8 |
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() { |