diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-25 20:19:41 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-25 20:19:41 +0200 |
commit | 16b9729aebd53f7474ea384545451cd987a63e46 (patch) | |
tree | 970d25515ecc7a88145cab3c18a65d31d1e5e6c7 /community/libcoap/APKBUILD | |
parent | fb63fadebb7ae270ccfd548c4483fe48066c049d (diff) | |
download | aports-16b9729aebd53f7474ea384545451cd987a63e46.tar.bz2 aports-16b9729aebd53f7474ea384545451cd987a63e46.tar.xz |
community/libcoap: disable tests on ppc64le
Diffstat (limited to 'community/libcoap/APKBUILD')
-rw-r--r-- | community/libcoap/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/libcoap/APKBUILD b/community/libcoap/APKBUILD index 68906089c5..3730ee3dc2 100644 --- a/community/libcoap/APKBUILD +++ b/community/libcoap/APKBUILD @@ -16,6 +16,10 @@ subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/obgm/$pkgname/archive/v$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" +case "$CARCH" in +ppc64le) options="!check" ;; # FIXME +esac + prepare() { default_prepare |