From 61a842ee43923b190ce76ce9eeeb787e94d8e708 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Wed, 26 Jan 2022 19:02:00 +0100 Subject: [PATCH] Debug builds are gone --- scripts/configure_firestorm.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ;;