diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-14 16:54:32 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-14 17:05:56 +0000 |
commit | 4e8e97f9dc83012d4ae40058a832f4765e4969f4 (patch) | |
tree | ff32c657453b0219bb9220255da9c1e2ce13bfde | |
parent | aac1be4f108afdd06108b2d613088018b8612db5 (diff) | |
download | aports-4e8e97f9dc83012d4ae40058a832f4765e4969f4.tar.bz2 aports-4e8e97f9dc83012d4ae40058a832f4765e4969f4.tar.xz |
community/tinc-pre: disable on s390x and ppc64le
tests fails. this is also a pre-release, which we want avoid to maintain
-rw-r--r-- | community/tinc-pre/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/tinc-pre/APKBUILD b/community/tinc-pre/APKBUILD index 71753e81f3..858531fa1f 100644 --- a/community/tinc-pre/APKBUILD +++ b/community/tinc-pre/APKBUILD @@ -6,7 +6,8 @@ pkgver=${_realver/pre/.} pkgrel=1 pkgdesc="Virtual Private Network (VPN) daemon (pre-release)" url="http://tinc-vpn.org/" -arch="all" +# tests hangs on s390x and fails in lxc on ppc64le +arch="all !s390x !ppc64le" license="GPLv2" depends="" makedepends="linux-headers ncurses-dev readline-dev @@ -42,7 +43,6 @@ build() { } check() { - [ "$CARCH" != ppc64le ] || return 0 cd "$builddir" make check } |