nickva commented on issue #4259: URL: https://github.com/apache/couchdb/issues/4259#issuecomment-1366369747
@Tom-python0121 thanks for double checking. When I run `./configure` from the tar.gz I get only: ``` $ ./configure ==> configuring couchdb in rel/couchdb.config You have configured Apache CouchDB, time to relax. Relax. ``` But in your case it seems it's attempting to install rebar or rebar3. So it could be one of these sections that's failing: https://github.com/apache/couchdb/blob/f6ddbe24cace7a841508c451bc12820b9d76c218/configure#L307-L315 Wonder what your `${rootdir}` is in https://github.com/apache/couchdb/blob/f6ddbe24cace7a841508c451bc12820b9d76c218/configure#L336-L338 and if bin/rebar3 found there. Would you be able to echo it in a debug line with a patch like this: ``` if [ -z "${REBAR3}" ]; then echo "rebar3 install **" echo "rootdir = ${rootdir}" install_local_rebar3 REBAR3=${rootdir}/bin/rebar3 fi ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
