You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by GitBox <gi...@apache.org> on 2018/02/14 09:16:12 UTC

[GitHub] janl closed pull request #1161: Add ./configure --dev as alias for -c --disable-{docs,fauxton}

janl closed pull request #1161: Add ./configure --dev as alias for -c --disable-{docs,fauxton}
URL: https://github.com/apache/couchdb/pull/1161
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/configure b/configure
index 412341208f..fa0dfed6a0 100755
--- a/configure
+++ b/configure
@@ -46,6 +46,7 @@ Options:
   -c | --with-curl            request that couchjs is linked to cURL (default false)
   --disable-fauxton           do not build Fauxton
   --disable-docs              do not build any documentation or manpages
+  --dev                       alias for --with-curl --disable-docs --disable-fauxton
   --skip-deps                 do not update erlang dependencies
   --rebar=PATH                use rebar by specified path (version >=2.6.0 && <3.0 required)
 EOF
@@ -77,6 +78,14 @@ parse_opts() {
                 continue
                 ;;
 
+            --dev)
+                WITH_DOCS=0
+                WITH_FAUXTON=0
+                WITH_CURL="true"
+                shift
+                continue
+                ;;
+
             --skip-deps)
                 SKIP_DEPS=1
                 shift


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services