From 8c296032f5966bb5c0413034f7df0bd7280b334d Mon Sep 17 00:00:00 2001 From: Cinders Date: Mon, 12 Aug 2013 09:36:38 -0600 Subject: [PATCH] Add --no-package flag to configure_firestorm.sh --- scripts/configure_firestorm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/configure_firestorm.sh b/scripts/configure_firestorm.sh index 6e99f8ad36..8e4db4952c 100755 --- a/scripts/configure_firestorm.sh +++ b/scripts/configure_firestorm.sh @@ -60,6 +60,7 @@ showUsage() 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)" echo " --fmodex : Build with FMOD Ex" echo " --opensim : Build with OpenSim support (Disables Havok features)" echo " --no-opensim : Build without OpenSim support (Overrides --opensim)" @@ -98,6 +99,7 @@ getArgs() no-opensim) WANTS_OPENSIM=$FALSE;; avx) WANTS_AVX=$TRUE;; package) WANTS_PACKAGE=$TRUE;; + no-package) WANTS_PACKAGE=$FALSE;; build) WANTS_BUILD=$TRUE;; platform) PLATFORM="$OPTARG";; jobs) JOBS="$OPTARG";;