summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abuild.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/abuild.in b/abuild.in
index 35b7995..8b6d8dd 100644
--- a/abuild.in
+++ b/abuild.in
@@ -1889,7 +1889,8 @@ builddeps() {
done
$SUDO_APK add --upgrade --repository "$REPODEST/$repo" \
$apk_opt_wait \
- --virtual .makedepends-$pkgname $builddeps
+ --virtual .makedepends-$pkgname $builddeps \
+ || return 1
}
# replace the md5sums in the APKBUILD
@@ -2034,7 +2035,8 @@ deps() {
[ -z "$_quiet" ] && msg "Installing for build:$builddeps"
$SUDO_APK add $_quiet $apk_opt_wait --repository "$REPODEST/$repo" \
--virtual .makedepends-$pkgname \
- $builddeps
+ $builddeps \
+ || return 1
if [ -n "$CBUILDROOT" ]; then
[ -z "$_quiet" ] && msg "Installing for host:$hostdeps"
$SUDO_APK add $_quiet --root "$CBUILDROOT" --repository "$REPODEST/$repo" $apk_opt_wait \