diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-30 20:16:09 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-05-30 20:16:59 +0000 |
commit | 9d49afd13c402dbcfe8fd257afcdb561905464cf (patch) | |
tree | fed388c80c99477f62da0b1387883ee37e69412c /community/lua-lpeg/APKBUILD | |
parent | 10542fa1e758fbb91028c4e20e6e3b9258cc8d39 (diff) | |
download | aports-9d49afd13c402dbcfe8fd257afcdb561905464cf.tar.bz2 aports-9d49afd13c402dbcfe8fd257afcdb561905464cf.tar.xz |
community/lua-lpeg: disable luajit variant on aarch64
the testsuite fails on aarch64 with libjit. disable it
Diffstat (limited to 'community/lua-lpeg/APKBUILD')
-rw-r--r-- | community/lua-lpeg/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/lua-lpeg/APKBUILD b/community/lua-lpeg/APKBUILD index 0b9c840e8e..3186356c1d 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 |