Browse Source

Fix a hardcoded 'make' call

$(MAKE) works everywhere, including FreeBSD.
Loïc Hoguin 9 years ago
parent
commit
6cf4946739
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/deps.mk

+ 1 - 1
core/deps.mk

@@ -128,7 +128,7 @@ define dep_autopatch_fetch_rebar
 		git clone -q -n -- https://github.com/rebar/rebar $(ERLANG_MK_TMP)/rebar; \
 		cd $(ERLANG_MK_TMP)/rebar; \
 		git checkout -q 791db716b5a3a7671e0b351f95ddf24b848ee173; \
-		make; \
+		$(MAKE); \
 		cd -; \
 	fi
 endef