diff options
-rw-r--r-- | abuild.in | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 \ |