From c2e48b6526e8a9f6dd9411702a07dab9e3d19268 Mon Sep 17 00:00:00 2001 From: Radim Kolar <> Date: Mon, 24 Aug 2009 21:09:11 +0200 Subject: [PATCH] make message checking .. in locktype start with uppercase --- 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 400868a..7399783 100644 --- a/site_scons/locktype.py +++ b/site_scons/locktype.py @@ -1,8 +1,8 @@ # # SCons FSP locking type tester # -# Version 1.0 -# 20-Jul-2009 +# Version 1.1 +# 24-Aug-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')