aboutsummaryrefslogtreecommitdiffstats
path: root/community/libcoap
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2017-08-25 20:25:08 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2017-08-25 20:25:08 +0200
commit24f2c691ad640a5c65dffaff697e2f055a885229 (patch)
tree403b296ca334772a477199d6e960916dc04d9598 /community/libcoap
parent16b9729aebd53f7474ea384545451cd987a63e46 (diff)
downloadaports-24f2c691ad640a5c65dffaff697e2f055a885229.tar.bz2
aports-24f2c691ad640a5c65dffaff697e2f055a885229.tar.xz
community/libcoap: return in check() on ppc64le
Using options="!check" for this arch makes the configure script complain because --enable-tests was passed but cunit wasn't installed.
Diffstat (limited to 'community/libcoap')
-rw-r--r--community/libcoap/APKBUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/community/libcoap/APKBUILD b/community/libcoap/APKBUILD
index 3730ee3dc2..cc8ab70b4c 100644
--- a/community/libcoap/APKBUILD
+++ b/community/libcoap/APKBUILD
@@ -16,10 +16,6 @@ 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
@@ -41,6 +37,10 @@ build() {
}
check() {
+ case "$CARCH" in
+ ppc64le) return ;; # FIXME
+ esac
+
"$builddir"/tests/testdriver
}