Fixed displayed message for fspd building check

This commit is contained in:
Radim Kolar 2020-06-04 08:01:36 +02:00
parent 0fa6ea6172
commit 7f76e43551

View File

@ -1,15 +1,15 @@
#
# SCons client commands build tester
# SCons server build tester
#
# Version 1.0
# 03-Jun-2020
# Version 1.1
# 04-Jun-2020
#
from SCons.Script import ARGUMENTS
def checkForBuildingServer(conf):
"""Check command line arguments if user requested to not build server."""
conf.Message("Checking if we are building client commands... ")
conf.Message("Checking if we are building fspd server... ")
buildlamer=ARGUMENTS.get('without-server', 0)
try:
buildlamer2=int(buildlamer)