diff options
author | Mike Sullivan <mksully22@gmail.com> | 2018-03-19 23:32:13 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2018-03-20 07:43:07 +0000 |
commit | 0e565891f3889307bbf1787c33aec0493618e873 (patch) | |
tree | 6e0d32a7f77f63c81f04c9d006bb3bba486b77a4 /testing | |
parent | 94d08d07f396db00e770c7bd32e6fa2d73a3b7bf (diff) | |
download | aports-0e565891f3889307bbf1787c33aec0493618e873.tar.bz2 aports-0e565891f3889307bbf1787c33aec0493618e873.tar.xz |
testing/hylafaxplus: fix ppc64le build break by controlling parallelism
Diffstat (limited to 'testing')
-rw-r--r-- | testing/hylafaxplus/APKBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/testing/hylafaxplus/APKBUILD b/testing/hylafaxplus/APKBUILD index 3393869c91..69f173d402 100644 --- a/testing/hylafaxplus/APKBUILD +++ b/testing/hylafaxplus/APKBUILD @@ -3,7 +3,7 @@ pkgname=hylafaxplus _pkgname=hylafax pkgver=5.5.9 -pkgrel=1 +pkgrel=2 pkgdesc="Making the Premier Open-Source Fax Management System Even Better" url="http://hylafax.sourceforge.net" arch="all" @@ -26,6 +26,11 @@ build() { # the configure script does not handle ccache or distcc export CC=gcc export CXX=g++ + case "$CARCH" in + ppc64le) + par_options="-j1" + ;; + esac ./configure \ --nointeractive \ --disable-pam \ @@ -47,7 +52,7 @@ build() { --with-DSO=auto \ --with-PATH_EGETTY=/bin/false \ --with-PATH_VGETTY=/bin/false - make + make $par_options } package(){ |