From bef8ffc58bead55a0dd5f08274ea78453b87f990 Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 8 Jan 2018 21:39:56 +0100 Subject: [PATCH] sqg: Fix wrong glob expansion while searching .info files Signed-off-by: Willy Sudiarto Raharjo --- src/usr/libexec/sbopkg/sqg/functions | 2 +- tools/ChangeLog-latest.txt | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/usr/libexec/sbopkg/sqg/functions b/src/usr/libexec/sbopkg/sqg/functions index d8447d6..2bb4832 100644 --- a/src/usr/libexec/sbopkg/sqg/functions +++ b/src/usr/libexec/sbopkg/sqg/functions @@ -221,7 +221,7 @@ execute_build () { if [ "$ALL" == "yes" ]; then printf "Processing all SlackBuilds in the $REPO_SUBPATH repository..." - PKGSNEW=($(find "$REPO_DIR" -name *.info -print0 | xargs -r0)) + PKGSNEW=($(find "$REPO_DIR" -name "*.info" -print0 | xargs -r0)) else for PKG in ${PKGS[@]}; do INFOPATH=$(find "$REPO_DIR" -name ${PKG}.info) diff --git a/tools/ChangeLog-latest.txt b/tools/ChangeLog-latest.txt index 25b4083..fc663a0 100644 --- a/tools/ChangeLog-latest.txt +++ b/tools/ChangeLog-latest.txt @@ -1,6 +1,6 @@ SBOPKG NEWS -sbopkg-dev (2017-11-19 08:10:29 UTC) +sbopkg-dev (2018-01-08 23:08:43 UTC) FEATURES * sqg: Parallelize building of single and all packages by option -j. Requires GNU Parallel. @@ -28,6 +28,8 @@ sbopkg-dev (2017-11-19 08:10:29 UTC) * Fix 90-SBo-master.repo to accomodate SBo's new server Patch by Matteo Bernardini * Remove SKIP_EMPTY option. + * Fix wrong glob expansion + Patch by Alan sbopkg 0.38.1 (2016-09-01 13:42 UTC) FEATURES