aboutsummaryrefslogtreecommitdiffstats
path: root/main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch')
-rw-r--r--main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch b/main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch
deleted file mode 100644
index a55bc4cd57..0000000000
--- a/main/abuild/0001-abuild-properly-detect-failure-of-dependency-install.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From e18d6228e7fc1e7601b4c793ef889cfd3e36fc36 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Timo=20Ter=C3=A4s?= <timo.teras@iki.fi>
-Date: Mon, 31 Oct 2016 15:49:29 +0200
-Subject: [PATCH] abuild: properly detect failure of dependency installation
-
----
- abuild.in | 6 ++++--
- 1 file 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 \
---
-2.10.1
-