diff options
author | Loïc Hoguin <[email protected]> | 2020-02-25 09:46:12 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2020-02-25 09:46:12 +0100 |
commit | 47038dcd2b440dcfd955339b35ad98767301f65d (patch) | |
tree | a3509e375096d1bff90ba9bf17d6e979405fbc5d | |
parent | ff67135accabcb29dda571d6d4cdf2ff53afc500 (diff) | |
download | erlang.mk-47038dcd2b440dcfd955339b35ad98767301f65d.tar.gz erlang.mk-47038dcd2b440dcfd955339b35ad98767301f65d.tar.bz2 erlang.mk-47038dcd2b440dcfd955339b35ad98767301f65d.zip |
Replace +A0 with +A1
In recent versions there has been issues with disabling +A
completely. Starting in OTP-23 the VM will automatically
use +A1 when the +A0 argument is given, as well.
-rw-r--r-- | core/core.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core.mk b/core/core.mk index eb16c0d..77adc2e 100644 --- a/core/core.mk +++ b/core/core.mk @@ -66,7 +66,7 @@ export ERLANG_MK_TMP # "erl" command. -ERL = erl +A0 -noinput -boot no_dot_erlang +ERL = erl +A1 -noinput -boot no_dot_erlang # Platform detection. |