diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-04-29 21:49:26 +0000 |
---|---|---|
committer | Breno Leitao <breno.leitao@gmail.com> | 2017-04-29 21:50:24 +0000 |
commit | 9663c52ed2d919cf0fcf3cc323ddb29dba08a22d (patch) | |
tree | 080c827c363ec5139568e13c3dfb8ca4261c5dd3 /community/libqmi | |
parent | 58ce76ea97ad01f1d49afecd3a0ab5f71942d559 (diff) | |
download | aports-9663c52ed2d919cf0fcf3cc323ddb29dba08a22d.tar.bz2 aports-9663c52ed2d919cf0fcf3cc323ddb29dba08a22d.tar.xz |
community/libqmi: Disable tests on ppc64le
Disabling tests on ppc64le, since the tests are broken. Should check
what is happening later (after 3.6 release).
Diffstat (limited to 'community/libqmi')
-rw-r--r-- | community/libqmi/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/community/libqmi/APKBUILD b/community/libqmi/APKBUILD index fc11162979..8c58c436a7 100644 --- a/community/libqmi/APKBUILD +++ b/community/libqmi/APKBUILD @@ -25,7 +25,10 @@ build() { --enable-more-warnings=yes \ || return 1 make || return 1 - make check || return 1 + + if [ "$CARCH" != "ppc64le" ] ; then + make check || return 1 + fi } package() { |