diff options
author | Andrew Lewis <nerf@judo.za.org> | 2022-11-14 21:44:51 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2022-11-14 21:44:51 +0200 |
commit | 8439a4895e1113cd8c1e7310ae10841212101cf9 (patch) | |
tree | 716867e0cb11afee41b1b2485b61f798fff923a3 /debian | |
parent | 953f4009eaa75122cbee1b4b4bef12f7cecded58 (diff) | |
download | rspamd-8439a4895e1113cd8c1e7310ae10841212101cf9.tar.gz rspamd-8439a4895e1113cd8c1e7310ae10841212101cf9.zip |
[Minor] debian package: disable luajit on arm64
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 71fb2ec70..f702e46de 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ export ASAN_OPTIONS=detect_leaks=0 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) -ifneq ($(filter $(DEB_HOST_ARCH),amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64 ppc64el),) +ifneq ($(filter $(DEB_HOST_ARCH),amd64 armel armhf i386 mips mips64el mipsel ppc64 ppc64el),) ENABLE_LUAJIT := ON else ENABLE_LUAJIT := OFF |