aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2015-04-29 07:58:16 +0000
committerBartłomiej Piotrowski <b@bpiotrowski.pl>2015-04-30 10:31:31 +0200
commit7194277a5d161e9050ab7f5bcfc9f9bd0d32c03e (patch)
tree16cc17ac048f24808bc86fabb3d7f49a58844d81 /testing
parent4d1c70b09e198d7c2e625a7cdf95baca172638a9 (diff)
downloadaports-7194277a5d161e9050ab7f5bcfc9f9bd0d32c03e.tar.bz2
aports-7194277a5d161e9050ab7f5bcfc9f9bd0d32c03e.tar.xz
testing/proxychains-ng: install and install-config returns 1 in case of error
Diffstat (limited to 'testing')
-rw-r--r--testing/proxychains-ng/APKBUILD5
1 files changed, 2 insertions, 3 deletions
diff --git a/testing/proxychains-ng/APKBUILD b/testing/proxychains-ng/APKBUILD
index 463a2ac728..b40ba25b54 100644
--- a/testing/proxychains-ng/APKBUILD
+++ b/testing/proxychains-ng/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=proxychains-ng
pkgver=4.8.1
-pkgrel=0
+pkgrel=1
pkgdesc="This tool provides proxy server support to any app."
url="https://github.com/rofl0r/proxychains-ng"
arch="all"
@@ -36,8 +36,7 @@ build() {
package() {
cd "$_builddir"
- make DESTDIR="$pkgdir" install
- make DESTDIR="$pkgdir" install-config
+ make DESTDIR="$pkgdir" install install-config || return 1
ln -s proxychains4 "$pkgdir"/usr/bin/proxychains
}