diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-07-24 07:55:03 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-07-24 07:57:00 +0000 |
commit | fe4159801698a92ac110be5de6a52bc6706c794f (patch) | |
tree | 3ef1221b3fc9e3da80e9594403557e22230ab239 /testing/icoutils | |
parent | f61ff84cad4708bc468d35e656f64096daacc896 (diff) | |
download | aports-fe4159801698a92ac110be5de6a52bc6706c794f.tar.bz2 aports-fe4159801698a92ac110be5de6a52bc6706c794f.tar.xz |
testing/icoutils: fix build on ppc64le
run update_config_guess to fix ppc64le build
Diffstat (limited to 'testing/icoutils')
-rw-r--r-- | testing/icoutils/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testing/icoutils/APKBUILD b/testing/icoutils/APKBUILD index 6973e5a33d..5c458dda3a 100644 --- a/testing/icoutils/APKBUILD +++ b/testing/icoutils/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: TBK <alpine@jjtc.eu> pkgname=icoutils pkgver=0.32.3 -pkgrel=0 +pkgrel=1 pkgdesc="Extracts and converts images in MS Windows(R) icon and cursor files." url="https://www.nongnu.org/icoutils/" arch="all" @@ -13,6 +13,11 @@ makedepends="automake autoconf libtool libpng-dev" subpackages="$pkgname-doc" source="https://download.savannah.gnu.org/releases/icoutils/$pkgname-$pkgver.tar.bz2" +prepare() { + default_prepare + update_config_guess +} + build() { cd "$builddir" ./configure \ |