diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-07-22 20:20:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-07-22 20:20:13 +0900 |
commit | f5993c009ba04854d6575fef3f5154282252a90f (patch) | |
tree | 1710c399b44a96102af7b92f947457bb7fa38c7e /debian/_buildscripts/local | |
parent | f45c2b2762a44d047548349cf25cf149a1cd98e0 (diff) | |
download | tde-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')
-rwxr-xr-x | debian/_buildscripts/local/internals/_build_set_common.sh | 2 |
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 } |