aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-10-09 13:22:41 +0200
committerLoïc Hoguin <[email protected]>2019-10-09 13:22:41 +0200
commit08b7a4eb95cb86e42486c344919a662f912e72e9 (patch)
tree330a332f056bf5764a49510b6d8e634cda51265f
parentf007daadfda8992bbd008205dfc8cf06f561aa77 (diff)
downloaderlang.mk-08b7a4eb95cb86e42486c344919a662f912e72e9.tar.gz
erlang.mk-08b7a4eb95cb86e42486c344919a662f912e72e9.tar.bz2
erlang.mk-08b7a4eb95cb86e42486c344919a662f912e72e9.zip
Use no_dot_erlang instead of start_clean
-rw-r--r--core/core.mk2
-rw-r--r--test/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/core.mk b/core/core.mk
index 855d798..eb16c0d 100644
--- a/core/core.mk
+++ b/core/core.mk
@@ -66,7 +66,7 @@ export ERLANG_MK_TMP
# "erl" command.
-ERL = erl +A0 -noinput -boot start_clean
+ERL = erl +A0 -noinput -boot no_dot_erlang
# Platform detection.
diff --git a/test/Makefile b/test/Makefile
index b7e8724..4dcd3d9 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -16,7 +16,7 @@ APP = test_$(subst -,_,$@)
# Erlang, quickly!
-ERL = erl +A0 -noinput -boot start_clean
+ERL = erl +A0 -noinput -boot no_dot_erlang
# Platform detection, condensed version.