diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-09-19 10:21:07 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-09-19 10:21:11 +0000 |
commit | 623a203531e003e36396168defdd374fe14a3b11 (patch) | |
tree | fd66c4da776ff6a2d2599fbdf44058cfe37c4166 /testing/libmhash | |
parent | 30915aba0d71d351d20b67869ec083a662d35c80 (diff) | |
download | aports-623a203531e003e36396168defdd374fe14a3b11.tar.bz2 aports-623a203531e003e36396168defdd374fe14a3b11.tar.xz |
testing/libmhash: fixed aarch64 build
Diffstat (limited to 'testing/libmhash')
-rw-r--r-- | testing/libmhash/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/libmhash/APKBUILD b/testing/libmhash/APKBUILD index b35e8dce81..616e70b399 100644 --- a/testing/libmhash/APKBUILD +++ b/testing/libmhash/APKBUILD @@ -3,7 +3,7 @@ pkgname=libmhash _pkgname=mhash pkgver=0.9.9.9 -pkgrel=0 +pkgrel=1 pkgdesc="Library which provides a uniform interface to a large number of hash algorithms" url="http://mhash.sourceforge.net/" arch="all" @@ -22,6 +22,7 @@ prepare() { build() { cd "$builddir" + update_config_guess || return 1 ./configure --prefix=/usr make || return 1 } |