summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/internals/_build_set_common.sh
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-07-22 20:20:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-07-22 20:20:13 +0900
commitf5993c009ba04854d6575fef3f5154282252a90f (patch)
tree1710c399b44a96102af7b92f947457bb7fa38c7e /debian/_buildscripts/local/internals/_build_set_common.sh
parentf45c2b2762a44d047548349cf25cf149a1cd98e0 (diff)
downloadtde-packaging-f5993c009ba04854d6575fef3f5154282252a90f.tar.gz
tde-packaging-f5993c009ba04854d6575fef3f5154282252a90f.zip
DEB build scripts: fixed bug introduced in a recent commit that prevented build set scripts from executing correctly.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/_buildscripts/local/internals/_build_set_common.sh')
-rwxr-xr-xdebian/_buildscripts/local/internals/_build_set_common.sh2
1 files changed, 1 insertions, 1 deletions
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
}