Updated Branches: refs/heads/1994-merge-rcouch 044f9f68a -> f24e464c7
only rely on the local rebar Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/be2f4b46 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/be2f4b46 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/be2f4b46 Branch: refs/heads/1994-merge-rcouch Commit: be2f4b46bedc3dad3fb454901a47111fda8b5f6c Parents: 044f9f6 Author: Benoit Chesneau <[email protected]> Authored: Fri Jan 10 16:24:57 2014 +0100 Committer: Benoit Chesneau <[email protected]> Committed: Fri Jan 10 16:24:57 2014 +0100 ---------------------------------------------------------------------- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/be2f4b46/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index ed5d2d2..fe687b8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ BASE_DIR = $(shell pwd) SUPPORT_DIR=$(BASE_DIR)/src/support ERLC ?= $(shell which erlc) ESCRIPT ?= $(shell which escript) -REBAR = $(BASE_DIR)/rebar OVERLAY_VARS ?= PACKAGE_NAME=apache-couchdb RELDIR=$(BASE_DIR)/rel/$(PACKAGE_NAME) @@ -29,18 +28,18 @@ export USE_STATIC_ICU all: deps compile compile: - @$(REBAR) compile + @$(BASE_DIR)/rebar compile deps: rebar - @$(REBAR) get-deps + @$(BASE_DIR)/rebar get-deps clean: docclean - @$(REBAR) clean + @$(BASE_DIR)/rebar clean distclean: clean rebarclean relclean generate: - @$(REBAR) generate $(OVERLAY_VARS) + @$(BASE_DIR)/rebar generate $(OVERLAY_VARS) rel: generate
