From 669c023de96d98036c8a945c54ad5fc2d424bac9 Mon Sep 17 00:00:00 2001 From: Radim Kolar <> Date: Mon, 24 Aug 2009 20:47:50 +0200 Subject: [PATCH] changed scons messages from clangtest to be more consistent with rest of scons framework --- site_scons/clangtest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site_scons/clangtest.py b/site_scons/clangtest.py index 40d3938..06e14e5 100644 --- a/site_scons/clangtest.py +++ b/site_scons/clangtest.py @@ -1,13 +1,13 @@ # # SCons C language related tests # -# Version 1.1 -# 25-Jul-2009 +# Version 1.2 +# 24-Aug-2009 # def checkForVariable(conf,variable,include): """Checks if variable is defined in given include statements.""" - conf.Message("checking if variable %s is defined... " % variable) + conf.Message("Checking if variable %s is defined... " % variable) rc = conf.TryCompile(""" %s void dummy(void); @@ -18,7 +18,7 @@ void dummy(void) { %s = 0; } def getVariableSize(conf,var): """Returns variable size in bytes""" - conf.Message("checking for size of "+var+" ") + conf.Message("Checking for size of "+var+"... ") rc = conf.TryCompile(""" #include #include