aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2020-10-07 01:21:07 +0200
committerJakub Jirutka <jakub@jirutka.cz>2020-10-07 01:21:58 +0200
commit1cb2e0270312065b76a2f08da0002aa7f13a3289 (patch)
treee133c3999ad48d530329c52291132c59c1912ee6
parentf0442e4d664116e3f75fcbcc2d892ce2e14ce55a (diff)
main/nginx: disable njs on armv7 due to test failure
build/njs_unit_test make: *** [build/Makefile:865: unit_test] Bus error (core dumped)
-rw-r--r--main/nginx/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/nginx/APKBUILD b/main/nginx/APKBUILD
index 2ef520bb558..b5597189bdd 100644
--- a/main/nginx/APKBUILD
+++ b/main/nginx/APKBUILD
@@ -79,7 +79,7 @@ _modules_dir="usr/lib/$pkgname/modules"
_stream_js_depends="$pkgname-mod-stream"
case "$CARCH" in
- x86|s390x|mips64) _njs_mods= ;; # has failing tests
+ x86 | s390x | mips64 | armv7) _njs_mods= ;; # has failing tests
*) _njs_mods="http-js stream-js";;
esac