Moved sqg functions to /usr/libexec.

Signed-off-by: Marcel Saegebarth <marc@mos6581.de>
This commit is contained in:
Marcel Saegebarth 2017-03-10 13:32:43 +01:00
parent 1eb39ee8eb
commit 6ef7b42ad5
3 changed files with 4 additions and 4 deletions

View File

@ -169,11 +169,11 @@ execute_build () {
if [ $? -eq 1 ]; then
printf '%s\n' "${PKGSNEW[@]}" | \
parallel --eta --will-cite --jobs $JOBS \
/usr/share/sbopkg/sqg/sqg-build-queuefile \
/usr/libexec/sbopkg/sqg/sqg-build-queuefile \
"$REPO_DIR" "$QUEUEDIR" {} "$SKIP_EMPTY" $VERBOSE
else
for PKG in "${PKGSNEW[@]}"; do
/usr/share/sbopkg/sqg/sqg-build-queuefile \
/usr/libexec/sbopkg/sqg/sqg-build-queuefile \
"$REPO_DIR" "$QUEUEDIR" "$PKG" "$SKIP_EMPTY" $VERBOSE
done
fi

View File

@ -1,7 +1,7 @@
#!/bin/sh
# source all sqg functions
. /usr/share/sbopkg/sqg/functions
. /usr/libexec/sbopkg/sqg/functions
REPO_DIR="$1"
QUEUEDIR="$2"

View File

@ -48,7 +48,7 @@ REPO_BRANCH=${REPO_BRANCH:-$(cat /etc/slackware-version | awk '{print $2}')}
### NO CHANGES SHOULD BE NECESSARY BELOW THIS LINE ###
# source all sqg functions
. /usr/share/sbopkg/sqg/functions
. /usr/libexec/sbopkg/sqg/functions
SCRIPT=${0##*/}