diff options
author | Mike Sullivan <mksully22@gmail.com> | 2019-02-27 15:28:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-03-05 11:28:04 +0000 |
commit | 57f2830739e31f9c73d2edaf5103502fbdae6822 (patch) | |
tree | adc46228cec1da635400952265b24877c693d911 /abuild.in | |
parent | 0a79fc62c9d0aa30eb42ff4251701eee2368309d (diff) | |
download | abuild-57f2830739e31f9c73d2edaf5103502fbdae6822.tar.gz abuild-57f2830739e31f9c73d2edaf5103502fbdae6822.tar.bz2 abuild-57f2830739e31f9c73d2edaf5103502fbdae6822.tar.xz abuild-57f2830739e31f9c73d2edaf5103502fbdae6822.zip |
abuild: replace command -v with which to fix build issues
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1597,7 +1597,7 @@ check() { # predefined splitfunc doc default_doc() { - local gzip=$(command -v pigz || echo gzip) + local gzip=$(which pigz || echo gzip) depends="$depends_doc" pkgdesc="$pkgdesc (documentation)" install_if="docs $pkgname=$pkgver-r$pkgrel" |