You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/09/23 14:29:32 UTC

[38/50] rebar commit: updated refs/heads/import to 5dea85d

Fix 'make deps'

We have to partially revert f3f8f29920ace62. The reason for not running
"make -C deps/retest" is to avoid a dependency on rebar in $PATH.

While at it, change one ./rebar to $(REBAR).


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/bcb6a4ea
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/bcb6a4ea
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/bcb6a4ea

Branch: refs/heads/import
Commit: bcb6a4ea45635f0ee96315ead077676ca062f3b5
Parents: b2147de
Author: Tuncer Ayaz <tu...@gmail.com>
Authored: Mon Jun 8 16:22:00 2015 +0200
Committer: Tuncer Ayaz <tu...@gmail.com>
Committed: Mon Jun 8 16:26:52 2015 +0200

----------------------------------------------------------------------
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/bcb6a4ea/Makefile
----------------------------------------------------------------------
diff --git a/Makefile b/Makefile
index c0a2818..d0d16f8 100644
--- a/Makefile
+++ b/Makefile
@@ -34,8 +34,8 @@ binary: clean all
 	(cd ../rebar.wiki && git commit -m "Update $(VSN)" rebar)
 
 deps:
-	@REBAR_EXTRA_DEPS=1 ./rebar get-deps
-	$(MAKE) -C deps/retest
+	@REBAR_EXTRA_DEPS=1 $(REBAR) get-deps
+	@(cd deps/retest && $(REBAR) compile escriptize)
 
 test: test_eunit test_inttest