diff options
Diffstat (limited to 'main/lz4')
-rw-r--r-- | main/lz4/APKBUILD | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/main/lz4/APKBUILD b/main/lz4/APKBUILD index 286998da04..e03f46c260 100644 --- a/main/lz4/APKBUILD +++ b/main/lz4/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=lz4 pkgver=1.8.3 -pkgrel=1 +pkgrel=2 pkgdesc="LZ4 is lossless compression algorithm with fast decoder @ multiple GB/s per core." url="https://github.com/lz4/lz4" arch="all" @@ -21,10 +21,7 @@ build() { check() { cd "$builddir" - case "$CARCH" in - armel|armhf) make check;; - *) make test;; - esac + make check } tests() { |