summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
authorMike Sullivan <mksully22@gmail.com>2019-04-22 19:34:50 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-04-29 18:33:37 +0000
commit369e7069b8192a1d1ca267c6df5b907955bc3624 (patch)
treebe06b166dd122ab0085755d29efcd997bfcb7cfb /abuild.in
parent29bf80290723266dcbbadf316af884493331a3b0 (diff)
Revert "abuild: replace command -v with which to fix build issues"
This reverts commit 57f2830739e31f9c73d2edaf5103502fbdae6822. https://github.com/alpinelinux/aports/pull/7203 fixes the original problem
Diffstat (limited to 'abuild.in')
-rw-r--r--abuild.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index a898c12..be81a66 100644
--- a/abuild.in
+++ b/abuild.in
@@ -1604,7 +1604,7 @@ check() {
# predefined splitfunc doc
default_doc() {
- local gzip=$(which pigz || echo gzip)
+ local gzip=$(command -v pigz || echo gzip)
depends="$depends_doc"
pkgdesc="$pkgdesc (documentation)"
install_if="docs $pkgname=$pkgver-r$pkgrel"