aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Bergia <[email protected]>2017-08-09 15:24:36 +0800
committerLoïc Hoguin <[email protected]>2017-08-23 15:01:15 +0200
commit290cae07c7eae6aa330df587af044df3306fa842 (patch)
treeec732a3fd99332e98b88be61d6729e89b750be01
parent85bd1bb0637d560ae0c82b3f6b64aaf5c6c3e343 (diff)
downloaderlang.mk-290cae07c7eae6aa330df587af044df3306fa842.tar.gz
erlang.mk-290cae07c7eae6aa330df587af044df3306fa842.tar.bz2
erlang.mk-290cae07c7eae6aa330df587af044df3306fa842.zip
Convert the run target to double-colon
-rw-r--r--plugins/relx.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk
index 9b983f9..267d899 100644
--- a/plugins/relx.mk
+++ b/plugins/relx.mk
@@ -54,7 +54,7 @@ distclean-relx-rel:
# Run target.
ifeq ($(wildcard $(RELX_CONFIG)),)
-run:
+run::
else
define get_relx_release.erl
@@ -78,7 +78,7 @@ ifeq ($(PLATFORM),msys2)
RELX_REL_EXT := .cmd
endif
-run: all
+run:: all
$(verbose) $(RELX_OUTPUT_DIR)/$(RELX_REL_NAME)/bin/$(RELX_REL_NAME)$(RELX_REL_EXT) console
help::