From a2b2162fbb1539db2331d0559777b5f9a12887ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= Date: Mon, 24 Feb 2025 10:14:17 +0100 Subject: [PATCH] build: add release build option --- usr/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/build.sh b/usr/build.sh index 52dd69f5c..7ff4f86de 100755 --- a/usr/build.sh +++ b/usr/build.sh @@ -3,7 +3,7 @@ function usage { echo "$0 [OPTIONS]" echo " -c Clean" - echo " -d Debug build" + echo " -r Release build" echo " -v Verbose" echo " -s Single core" echo " -h Print this help" @@ -44,13 +44,13 @@ debug=y verbose=n singlecore=n -while getopts cdhvs option +while getopts crhvs option do case "${option}" in c) clean=y;; - d) debug=y;; - v) verbose=y;; + r) debug=n;; + v) verbose=y;; s) singlecore=y;; h) usage && exit 1;; esac