diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-11-07 08:27:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-11-07 08:27:44 +0000 |
commit | 6252c7ce30d020fd42e136ab2e00e53b2f14d0a7 (patch) | |
tree | 873f8d780c5df91ce1be16b820c7737a9550a18d /community | |
parent | a5121c10eb8f2bfdd64b677c1f60389a19b31916 (diff) | |
download | aports-6252c7ce30d020fd42e136ab2e00e53b2f14d0a7.tar.bz2 aports-6252c7ce30d020fd42e136ab2e00e53b2f14d0a7.tar.xz |
community/libplist: disable tests on armhf
Diffstat (limited to 'community')
-rw-r--r-- | community/libplist/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/libplist/APKBUILD b/community/libplist/APKBUILD index 46af262f0d..b335919d24 100644 --- a/community/libplist/APKBUILD +++ b/community/libplist/APKBUILD @@ -30,7 +30,7 @@ build() { check() { # https://github.com/libimobiledevice/libplist/issues/118 case "$CARCH" in - armv7) return 0;; + arm*) return 0;; esac make check -j1 # https://github.com/libimobiledevice/libimobiledevice/issues/777 |