diff --git a/scripts/configure_firestorm.sh b/scripts/configure_firestorm.sh index 5d58566116..e5dcd4ee12 100755 --- a/scripts/configure_firestorm.sh +++ b/scripts/configure_firestorm.sh @@ -67,8 +67,8 @@ showUsage() echo " --config : Generate a new architecture-specific config" echo " --build : Build Firestorm" echo " --version : Update version number" - echo " --chan [Release|Beta|Private] : Private is the default, sets channel" - echo " --btype [Release|RelWithDebInfo|Debug] : Release is default, whether to use symbols" + echo " --chan [Release|Beta|Private] : Private is the default, sets channel" + echo " --btype [Release|RelWithDebInfo] : Release is default, whether to use symbols" echo " --kdu : Build with KDU" echo " --package : Build installer" echo " --no-package : Build without installer (Overrides --package)" @@ -109,7 +109,7 @@ getArgs() config) WANTS_CONFIG=$TRUE;; version) WANTS_VERSION=$TRUE;; chan) CHANNEL="$OPTARG";; - btype) if [ \( "$OPTARG" == "Release" \) -o \( "$OPTARG" == "RelWithDebInfo" \) -o \( "$OPTARG" == "Debug" \) ] ; then + btype) if [ \( "$OPTARG" == "Release" \) -o \( "$OPTARG" == "RelWithDebInfo" \) ] ; then BTYPE="$OPTARG" fi ;;