diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-09-19 16:35:39 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-09-19 16:37:12 +0000 |
commit | be904e34b5a05ed8d2c9530668f58b4f812c6a9a (patch) | |
tree | a73a24302a1312a420cd217dbb981a7054c0dbe2 /community/ilmbase | |
parent | d48789f5dccd30d73e86834507ba2ae25d58b74b (diff) | |
download | aports-be904e34b5a05ed8d2c9530668f58b4f812c6a9a.tar.bz2 aports-be904e34b5a05ed8d2c9530668f58b4f812c6a9a.tar.xz |
community/ilmbase: disable tests on x86 for now
bug filed upstream: https://github.com/openexr/openexr/issues/247
Diffstat (limited to 'community/ilmbase')
-rw-r--r-- | community/ilmbase/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/ilmbase/APKBUILD b/community/ilmbase/APKBUILD index 7509491985..430d9e2fd4 100644 --- a/community/ilmbase/APKBUILD +++ b/community/ilmbase/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Mark Riedesel <mark+alpine@klowner.com> pkgname=ilmbase pkgver=2.2.0 -pkgrel=2 +pkgrel=3 pkgdesc="Base libraries from ILM for OpenEXR" url="http://www.openexr.com" arch="all" @@ -30,6 +30,7 @@ build() { } check() { + [ "$CARCH" != x86 ] || return 0 cd "$builddir" make check } |