This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch remove-erlang-less-than-23 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit f3ddb6f27f575cb18457811de4d80dd0da77ee0f Author: Nick Vatamaniuc <[email protected]> AuthorDate: Fri Jun 17 17:40:12 2022 -0400 Skip Erlang version != 20 in configure They are all != 20 now --- configure | 4 ++-- 1 file 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
