Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E565D200B7E for ; Mon, 22 Aug 2016 13:19:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E41D7160AD1; Mon, 22 Aug 2016 11:19:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ACE01160AC3 for ; Mon, 22 Aug 2016 13:19:30 +0200 (CEST) Received: (qmail 64008 invoked by uid 500); 22 Aug 2016 11:19:28 -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 63241 invoked by uid 99); 22 Aug 2016 11:19:28 -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; Mon, 22 Aug 2016 11:19:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5F04FE08AB; Mon, 22 Aug 2016 11:19:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rnewson@apache.org To: commits@couchdb.apache.org Date: Mon, 22 Aug 2016 11:19:57 -0000 Message-Id: <22d064837fdb47f2bb8107d560505b75@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [31/50] ibrowse commit: updated refs/heads/upstream to b28542d archived-at: Mon, 22 Aug 2016 11:19:32 -0000 use global rebar Project: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/commit/45099028 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/tree/45099028 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/diff/45099028 Branch: refs/heads/upstream Commit: 45099028d824444b0e43b837671f9cbc385c7efa Parents: 94fab9a Author: benoitc Authored: Fri Nov 6 11:36:09 2015 +0100 Committer: benoitc Committed: Fri Nov 6 11:37:09 2015 +0100 ---------------------------------------------------------------------- Makefile | 10 ++++++---- rebar | Bin 188026 -> 0 bytes 2 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/blob/45099028/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index d2e61c6..4df166b 100644 --- a/Makefile +++ b/Makefile @@ -3,20 +3,22 @@ IBROWSE_VSN = $(shell sed -n 's/.*{vsn,.*"\(.*\)"}.*/\1/p' src/ibrowse.app.src) DIALYZER_PLT=$(CURDIR)/.dialyzer_plt DIALYZER_APPS=erts kernel stdlib ssl crypto public_key +REBAR ?= $(shell which rebar) + all: compile compile: - ./rebar compile + $(REBAR) compile clean: - ./rebar clean + $(REBAR) clean install: compile mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/ cp -r ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/ eunit_test: all - ./rebar eunit + $(REBAR) eunit test: all cd test; erl -pa ../../ibrowse/ebin -make; cd ../; \ @@ -26,7 +28,7 @@ test: all -s erlang halt xref: all - ./rebar xref + $(REBAR) xref docs: erl -noshell \ http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/blob/45099028/rebar ---------------------------------------------------------------------- diff --git a/rebar b/rebar deleted file mode 100755 index 8e4deb6..0000000 Binary files a/rebar and /dev/null differ