From 47a62afa3f3250924fa8e4f8350e99ceaa31f4cb Mon Sep 17 00:00:00 2001 From: Radim Kolar <> Date: Thu, 10 Sep 2009 13:56:19 +0200 Subject: [PATCH] Add '...' to end of checking for locktype message --- site_scons/locktype.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site_scons/locktype.py b/site_scons/locktype.py index 7399783..ddc29e1 100644 --- a/site_scons/locktype.py +++ b/site_scons/locktype.py @@ -1,8 +1,8 @@ # # SCons FSP locking type tester # -# Version 1.1 -# 24-Aug-2009 +# Version 1.2 +# 10-Sep-2009 # from SCons.Script import ARGUMENTS @@ -14,7 +14,7 @@ def checkForLockingType(check,conf): fun_shmget=conf.CheckFunc("shmget") fun_flock=conf.CheckFunc("flock") # select locking type - check.Message("Checking for FSP locking type") + check.Message("Checking for FSP locking type... ") lt=ARGUMENTS.get('locking', 0) or ARGUMENTS.get("with-locking",0) or ARGUMENTS.get("lock",0) or ARGUMENTS.get("with-lock",0) if lt == "none": conf.env.Append(CPPFLAGS = '-DFSP_NOLOCKING')