From 0e565891f3889307bbf1787c33aec0493618e873 Mon Sep 17 00:00:00 2001 From: Mike Sullivan Date: Mon, 19 Mar 2018 23:32:13 +0000 Subject: testing/hylafaxplus: fix ppc64le build break by controlling parallelism --- testing/hylafaxplus/APKBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'testing/hylafaxplus') 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(){ -- cgit v1.2.3