You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/21 02:48:00 UTC

[couchdb] 06/09: Fix SM60 prohibition on ARM

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-dynamic-matrix-3x
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 78a152f8b6ef9354e4be48d0567e22dcba58dd6b
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Thu Jan 20 19:55:32 2022 -0500

    Fix SM60 prohibition on ARM
    
    Already fixed by @lostnet on main.
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 9c22181..0bcbfae 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