aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/core.mk2
-rw-r--r--core/deps.mk4
-rw-r--r--core/erlc.mk2
-rw-r--r--doc/src/guide/ports.asciidoc2
4 files changed, 4 insertions, 6 deletions
diff --git a/core/core.mk b/core/core.mk
index 4ec72f2..6e15eeb 100644
--- a/core/core.mk
+++ b/core/core.mk
@@ -82,7 +82,7 @@ all:: deps app rel
# Noop to avoid a Make warning when there's nothing to do.
rel::
- $(verbose) echo -n
+ $(verbose) :
check:: clean app tests
diff --git a/core/deps.mk b/core/deps.mk
index 76f54d7..bf39be1 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -62,7 +62,7 @@ endif
$(verbose) mkdir -p $(ERLANG_MK_TMP)
$(verbose) for dep in $(ALL_DEPS_DIRS) ; do \
if grep -qs ^$$dep$$ $(ERLANG_MK_TMP)/deps.log; then \
- echo -n; \
+ :; \
else \
echo $$dep >> $(ERLANG_MK_TMP)/deps.log; \
if [ -f $$dep/GNUmakefile ] || [ -f $$dep/makefile ] || [ -f $$dep/Makefile ]; then \
@@ -127,7 +127,7 @@ define dep_autopatch_erlang_mk
endef
else
define dep_autopatch_erlang_mk
- echo -n
+ :
endef
endif
diff --git a/core/erlc.mk b/core/erlc.mk
index 02524b4..39ad574 100644
--- a/core/erlc.mk
+++ b/core/erlc.mk
@@ -78,7 +78,7 @@ endef
endif
app-build: ebin/$(PROJECT).app
- $(verbose) echo -n
+ $(verbose) :
# Source files.
diff --git a/doc/src/guide/ports.asciidoc b/doc/src/guide/ports.asciidoc
index b4527fb..b436c13 100644
--- a/doc/src/guide/ports.asciidoc
+++ b/doc/src/guide/ports.asciidoc
@@ -35,8 +35,6 @@ It contains a few variable definitions for the environment used for the build:
`ERL_INTERFACE_LIB_DIR`::
Path to the Erl_Interface static libraries.
-// @todo We should remove this file on clean, not distclean.
-
=== Using a custom Makefile
Erlang.mk will automatically run `make` if it detects a Makefile