This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch 3.3.x-pending-changes-3.3.3 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 7ac067b635386535bf639dcfa69adc4be69d6839 Author: Nick Vatamaniuc <vatam...@gmail.com> AuthorDate: Tue Oct 24 00:23:57 2023 -0400 When running configure in a dist skip proper is not present This avoids needing to specify --without-proper when building the distribution and also specifying the same option when configuring it later. --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 3fe870091..d71042447 100755 --- a/configure +++ b/configure @@ -252,6 +252,11 @@ if [ "${ERLANG_OS}" = "unix" ]; then fi fi +# If we're in a release tarball and we don't have proper, then mark it as skipped +if [ ! -d .git ] && [ "$WITH_PROPER" = "true" ] && [ ! -d src/proper ]; then + WITH_PROPER="false" +fi + echo "==> configuring couchdb in rel/couchdb.config" cat > rel/couchdb.config << EOF % Licensed under the Apache License, Version 2.0 (the "License"); you may not