aboutsummaryrefslogtreecommitdiffstats
path: root/main/libnl
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-05-12 17:18:42 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-05-12 17:18:42 +0000
commit83cecac7a49b21f2bd7e37c523fdc1786e5774a1 (patch)
tree77f2b95cda51f9c58ec0f2f6f896d3007a05ccd7 /main/libnl
parent6e2fec29b5996077ce5b7c4be4acd17affae6018 (diff)
downloadaports-83cecac7a49b21f2bd7e37c523fdc1786e5774a1.tar.bz2
aports-83cecac7a49b21f2bd7e37c523fdc1786e5774a1.tar.xz
main/libnl: disable tests on s390x
Diffstat (limited to 'main/libnl')
-rw-r--r--main/libnl/APKBUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/libnl/APKBUILD b/main/libnl/APKBUILD
index e57e903e8d..144c5a7dac 100644
--- a/main/libnl/APKBUILD
+++ b/main/libnl/APKBUILD
@@ -15,6 +15,11 @@ source="https://www.infradead.org/~tgr/libnl/files/$pkgname-$pkgver.tar.gz
fix-includes.patch"
builddir="$srcdir"/$pkgname-$pkgver
+# tests does not work on s390x builder
+case "$CARCH" in
+s390x) options="$options !check";;
+esac
+
build() {
cd "$builddir"
export CFLAGS="$CFLAGS -D_GNU_SOURCE"