diff options
Diffstat (limited to 'community/tinc-pre/APKBUILD')
-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 } |