From f5993c009ba04854d6575fef3f5154282252a90f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 22 Jul 2021 20:20:13 +0900 Subject: [PATCH] DEB build scripts: fixed bug introduced in a recent commit that prevented build set scripts from executing correctly. Signed-off-by: Michele Calgaro --- debian/_buildscripts/local/internals/_build_set_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/_buildscripts/local/internals/_build_set_common.sh b/debian/_buildscripts/local/internals/_build_set_common.sh index 4bc1ea3e8..08b4bf80e 100755 --- a/debian/_buildscripts/local/internals/_build_set_common.sh +++ b/debian/_buildscripts/local/internals/_build_set_common.sh @@ -52,7 +52,7 @@ function build_module() if [ $parm_SKIP_N -gt 0 -a $SKIP_cnt -lt $parm_SKIP_N ]; then SKIP_cnt=$((SKIP_cnt+1)) else - ./build_module.sh "$BUILD_DEFAULT_OPTIONS $@" + ./build_module.sh ${BUILD_DEFAULT_OPTIONS} "$@" echo fi }