File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,36 +11,36 @@ OVERLAY_VARS ?=
1111
1212
1313all : deps compile
14- ./rebar skip_deps=true escriptize
14+ $( REBAR ) skip_deps=true escriptize
1515
1616.PHONY : deps compile rel lock locked-all locked-deps
1717
1818rel : deps compile
19- cd rel && ../rebar generate skip_deps=true $(OVERLAY_VARS )
19+ cd rel && .$( REBAR ) generate skip_deps=true $(OVERLAY_VARS )
2020
2121deps :
22- ./rebar get-deps
22+ $( REBAR ) get-deps
2323
2424# #
2525# # Lock Targets
2626# #
2727# # see https://github.com/seth/rebar_lock_deps_plugin
2828lock : deps compile
29- ./rebar lock-deps
29+ $( REBAR ) lock-deps
3030
3131locked-all : locked-deps compile
3232
3333locked-deps :
3434 @echo " Using rebar.config.lock file to fetch dependencies"
35- ./rebar -C rebar.config.lock get-deps
35+ $( REBAR ) -C rebar.config.lock get-deps
3636
3737compile : deps
3838 # Temp hack to work around https://github.com/basho/riak-erlang-client/issues/151
39- (cd deps/riak_pb ; ./rebar clean compile deps_dir=..)
40- @ (./rebar compile)
39+ (cd deps/riak_pb ; $( REBAR ) clean compile deps_dir=..)
40+ @ ($( REBAR ) compile)
4141
4242clean :
43- @./rebar clean
43+ @$( REBAR ) clean
4444
4545distclean : clean
4646 @rm -rf basho_bench deps
You can’t perform that action at this time.
0 commit comments