summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2018-02-13 15:37:52 +0100
committerJan Lehnardt <jan@apache.org>2018-02-14 10:16:08 +0100
commitd3a28715376c745a77224e65f4389cd3a31f6eec (patch)
tree7537209d884ffb8eff931d679d42986f1f0ddd24
parentd35f00aae7f32a97988e5dac4c37de7030c74a0d (diff)
downloadcouchdb-d3a28715376c745a77224e65f4389cd3a31f6eec.tar.gz
feat: add ./configure --dev as alias for -c --disable-{docs,fauxton}
-rwxr-xr-xconfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index 412341208..fa0dfed6a 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