summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2022-01-20 19:55:32 -0500
committerAdam Kocoloski <kocolosk@apache.org>2022-01-25 20:00:25 -0500
commit016385f408e83e4058fbc8116c257fd579cc5688 (patch)
treed94f3d74ba8eef36c3badb76643b94219478e27e
parent77f34a1bbc7c76aefa59777da21e2e76e79f7ec8 (diff)
downloadcouchdb-016385f408e83e4058fbc8116c257fd579cc5688.tar.gz
Properly test for SM60 on ARM builds
Already fixed by @lostnet on main.
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 9c22181a1..0bcbfaef3 100755
--- a/configure
+++ b/configure
@@ -224,9 +224,9 @@ parse_opts() {
parse_opts $@
-if [ "${ARCH}" = "aarch64" ] && [ "${SM_VSN}" != "1.8.5" ]
+if [ "${ARCH}" = "aarch64" ] && [ "${SM_VSN}" = "60" ]
then
- echo "ERROR: SpiderMonkey 60 is known broken on ARM 64 (aarch64). Use 1.8.5 instead."
+ echo "ERROR: SpiderMonkey 60 is known broken on ARM 64 (aarch64). Use another version instead."
exit 1
fi