diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-12 17:55:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-12 17:55:46 +0000 |
commit | 547d910ae3d1ec7b2f0522ae2d68367ecb09fe31 (patch) | |
tree | d6e4c8b3db415f6a2770b3685abc371d2eb0af7a /community/php7 | |
parent | 762503964201a8a4f51b8ac1f18507e8013645f4 (diff) | |
download | aports-547d910ae3d1ec7b2f0522ae2d68367ecb09fe31.tar.bz2 aports-547d910ae3d1ec7b2f0522ae2d68367ecb09fe31.tar.xz |
community/php7: disable tests on s390x
Diffstat (limited to 'community/php7')
-rw-r--r-- | community/php7/APKBUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index 56e8b95586..fddc060f21 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -168,6 +168,9 @@ for _ext in $_extensions; do done subpackages="$subpackages $pkgname-common::noarch" +case "$CARCH" in +s390x) options="$options !check";; +esac prepare() { cd "$builddir" |