make message checking .. in prefix start with uppercase

This commit is contained in:
Radim Kolar 2009-08-24 21:10:30 +02:00
parent c2e48b6526
commit 8194116e78

View File

@ -1,15 +1,15 @@
#
# SCons user-supplied prefix tester
#
# Version 1.0
# 16-Jun-2009
# Version 1.1
# 24-Aug-2009
#
from SCons.Script import ARGUMENTS
def checkForUserPrefix(conf,oldprefix=None):
"""Returns prefix specified on command line or oldprefix if none is found."""
conf.Message("checking for user supplied prefix... ")
conf.Message("Checking for user supplied prefix... ")
lp = ARGUMENTS.get('prefix', 0)
if lp:
conf.Result(1)