mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-27 09:58:28 +01:00
Moved sqg functions to /usr/libexec.
Signed-off-by: Marcel Saegebarth <marc@mos6581.de>
This commit is contained in:
parent
1eb39ee8eb
commit
6ef7b42ad5
3 changed files with 4 additions and 4 deletions
|
@ -169,11 +169,11 @@ execute_build () {
|
||||||
if [ $? -eq 1 ]; then
|
if [ $? -eq 1 ]; then
|
||||||
printf '%s\n' "${PKGSNEW[@]}" | \
|
printf '%s\n' "${PKGSNEW[@]}" | \
|
||||||
parallel --eta --will-cite --jobs $JOBS \
|
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
|
"$REPO_DIR" "$QUEUEDIR" {} "$SKIP_EMPTY" $VERBOSE
|
||||||
else
|
else
|
||||||
for PKG in "${PKGSNEW[@]}"; do
|
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
|
"$REPO_DIR" "$QUEUEDIR" "$PKG" "$SKIP_EMPTY" $VERBOSE
|
||||||
done
|
done
|
||||||
fi
|
fi
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# source all sqg functions
|
# source all sqg functions
|
||||||
. /usr/share/sbopkg/sqg/functions
|
. /usr/libexec/sbopkg/sqg/functions
|
||||||
|
|
||||||
REPO_DIR="$1"
|
REPO_DIR="$1"
|
||||||
QUEUEDIR="$2"
|
QUEUEDIR="$2"
|
|
@ -48,7 +48,7 @@ REPO_BRANCH=${REPO_BRANCH:-$(cat /etc/slackware-version | awk '{print $2}')}
|
||||||
### NO CHANGES SHOULD BE NECESSARY BELOW THIS LINE ###
|
### NO CHANGES SHOULD BE NECESSARY BELOW THIS LINE ###
|
||||||
|
|
||||||
# source all sqg functions
|
# source all sqg functions
|
||||||
. /usr/share/sbopkg/sqg/functions
|
. /usr/libexec/sbopkg/sqg/functions
|
||||||
|
|
||||||
SCRIPT=${0##*/}
|
SCRIPT=${0##*/}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue