aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/bootstrap.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-05-15 10:20:12 +0300
committerLoïc Hoguin <[email protected]>2015-05-15 10:20:12 +0300
commita294038c83a631813af3708be3b986ef6a6e3468 (patch)
tree5622f1415f8cec55af6f840c95b95efed039f705 /plugins/bootstrap.mk
parent1c630fb7765815d7229d68c8edf5ffd37bcd2785 (diff)
downloaderlang.mk-a294038c83a631813af3708be3b986ef6a6e3468.tar.gz
erlang.mk-a294038c83a631813af3708be3b986ef6a6e3468.tar.bz2
erlang.mk-a294038c83a631813af3708be3b986ef6a6e3468.zip
Replace make with $(MAKE) for BSD compatibility
Diffstat (limited to 'plugins/bootstrap.mk')
-rw-r--r--plugins/bootstrap.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/bootstrap.mk b/plugins/bootstrap.mk
index 6494180..6637520 100644
--- a/plugins/bootstrap.mk
+++ b/plugins/bootstrap.mk
@@ -365,13 +365,13 @@ ifeq ($(wildcard src/),)
$(error Error: src/ directory does not exist)
endif
ifndef t
- $(error Usage: make new t=TEMPLATE n=NAME)
+ $(error Usage: $(MAKE) new t=TEMPLATE n=NAME)
endif
ifndef tpl_$(t)
$(error Unknown template)
endif
ifndef n
- $(error Usage: make new t=TEMPLATE n=NAME)
+ $(error Usage: $(MAKE) new t=TEMPLATE n=NAME)
endif
$(call render_template,tpl_$(t),src/$(n).erl)