summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@gmail.com>2022-06-17 17:40:12 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2022-06-17 18:59:17 -0400
commiteb9884e95a9920110be7045f72d4e3e970df97f8 (patch)
tree5dbaf583d981d32449c5f4f047e91982b953ccc7
parentb4aadedcb98b919894a811d41dfcbc9521906773 (diff)
downloadcouchdb-eb9884e95a9920110be7045f72d4e3e970df97f8.tar.gz
Skip Erlang version != 20 in configure
They are all != 20 now
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index d8e592b9e..9f8cb6828 100755
--- a/configure
+++ b/configure
@@ -333,12 +333,12 @@ if [ -z "${REBAR}" ]; then
REBAR=${rootdir}/bin/rebar
fi
-if [ -z "${REBAR3}" ] && [ "${ERLANG_VER}" != "20" ]; then
+if [ -z "${REBAR3}" ]; then
install_local_rebar3
REBAR3=${rootdir}/bin/rebar3
fi
-if [ -z "${ERLFMT}" ] && [ "${ERLANG_VER}" != "20" ]; then
+if [ -z "${ERLFMT}" ]; then
install_local_erlfmt
ERLFMT=${rootdir}/bin/erlfmt
fi