aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-05-30 20:16:09 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-05-30 20:16:59 +0000
commit9d49afd13c402dbcfe8fd257afcdb561905464cf (patch)
treefed388c80c99477f62da0b1387883ee37e69412c
parent10542fa1e758fbb91028c4e20e6e3b9258cc8d39 (diff)
community/lua-lpeg: disable luajit variant on aarch64
the testsuite fails on aarch64 with libjit. disable it
-rw-r--r--community/lua-lpeg/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/community/lua-lpeg/APKBUILD b/community/lua-lpeg/APKBUILD
index 0b9c840e8eb..3186356c1dc 100644
--- a/community/lua-lpeg/APKBUILD
+++ b/community/lua-lpeg/APKBUILD
@@ -3,7 +3,7 @@
pkgname=lua-lpeg
_pkgname=lpeg
pkgver=1.0.1
-pkgrel=3
+pkgrel=4
pkgdesc="Pattern-matching library for Lua"
url="http://www.inf.puc-rio.br/~roberto/lpeg"
arch="all"
@@ -18,7 +18,7 @@ builddir="$srcdir/$_pkgname-$pkgver"
# luajit is not available for selected arches
case "$CARCH" in
- s390x) _luajit="";;
+ s390x|aarch64) _luajit="";;
*) checkdepends="luajit" _luajit="jit";;
esac