Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BC4F218DE0 for ; Wed, 22 Jul 2015 05:29:37 +0000 (UTC) Received: (qmail 21544 invoked by uid 500); 22 Jul 2015 05:29:19 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 21378 invoked by uid 500); 22 Jul 2015 05:29:19 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 20050 invoked by uid 99); 22 Jul 2015 05:29:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2015 05:29:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C6E16E1811; Wed, 22 Jul 2015 05:29:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Wed, 22 Jul 2015 05:29:56 -0000 Message-Id: <5b278c868af34550883099c058d248bf@git.apache.org> In-Reply-To: <965fb5c70d53481cbb0ba93c46adbed7@git.apache.org> References: <965fb5c70d53481cbb0ba93c46adbed7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [39/50] couchdb commit: updated refs/heads/developer-preview-2.0 to 2a31bca add option to skip upadting erlang deps on ./configure Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/1ef7182a Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/1ef7182a Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/1ef7182a Branch: refs/heads/developer-preview-2.0 Commit: 1ef7182ac10fc35bcdd17b437cf2544eb0b4e83c Parents: f9a0db4 Author: Jan Lehnardt Authored: Wed Jun 24 22:42:47 2015 +0200 Committer: Jan Lehnardt Committed: Wed Jun 24 23:07:49 2015 +0200 ---------------------------------------------------------------------- configure | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/1ef7182a/configure ---------------------------------------------------------------------- diff --git a/configure b/configure index cbf55c8..b5d56e9 100755 --- a/configure +++ b/configure @@ -21,6 +21,7 @@ TEST=0 WITH_CURL="false" WITH_FAUXTON=1 WITH_DOCS=1 +SKIP_DEPS=0 PREFIX= DEFAULT_PREFIX=/usr/local @@ -64,6 +65,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 + --skip-deps do not update erlang dependencies Installation directories: @@ -122,6 +124,12 @@ parse_opts() { continue ;; + --skip-deps) + SKIP_DEPS=1 + shift + continue + ;; + --user|-u) if [ -n "$2" ]; then eval COUCHDB_USER=$2 @@ -625,7 +633,7 @@ EOF # only update dependencies, when we are not in a release tarball -if [ -d .git ]; then +if [ -d .git -a $SKIP_DEPS -ne 1 ]; then echo "==> updating dependencies" rebar get-deps update-deps fi