diff options
author | Tuan M. Hoang <tmhoang@flatglobe.org> | 2018-02-08 11:38:51 -0500 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-02-08 17:52:40 +0100 |
commit | 3c6150845f9fb6e24c5b6d705d9cd3414e389668 (patch) | |
tree | f2b4fc7687af9eab1f3005e193136f9373d43d0a /main/fftw | |
parent | f782c7be5c328945a317d276586a05db26c76531 (diff) | |
download | aports-3c6150845f9fb6e24c5b6d705d9cd3414e389668.tar.bz2 aports-3c6150845f9fb6e24c5b6d705d9cd3414e389668.tar.xz |
main/fftw: disable on s390x for now - hangs on container and kvm
Diffstat (limited to 'main/fftw')
-rw-r--r-- | main/fftw/APKBUILD | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/main/fftw/APKBUILD b/main/fftw/APKBUILD index 5fc5659e80..7f0ad073ae 100644 --- a/main/fftw/APKBUILD +++ b/main/fftw/APKBUILD @@ -13,7 +13,8 @@ subpackages="$pkgname-dev $pkgname-doc $pkgname-single-libs:single srcpkgver=${pkgver//p/-pl} source="http://www.fftw.org/$pkgname-$srcpkgver.tar.gz cycle.h.patch" -arch="all" +# s390x: hangs on container and KVM +arch="all !s390x" _precision="single double long-double" builddir="$srcdir/$pkgname-$srcpkgver" @@ -28,9 +29,6 @@ prepare() { build() { local _openmp= - case "$CARCH" in - s390x) _openmp="--disable-openmp";; # openmp deadlocks on s390x - esac for i in $_precision; do case "$i" in single)_cf="--enable-single";; |