aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2025-06-25 13:25:05 +0200
committerLoïc Hoguin <[email protected]>2025-06-25 13:25:05 +0200
commitf157f1121a89ea766293df3a31c58e50c4009d16 (patch)
tree1bc36d51c9f6da7e44ffdefc44829e47b0f65732
parent88ab050b42ef57d56d140b7a2ccda902e9d3aa43 (diff)
downloaderlang.mk-master.tar.gz
erlang.mk-master.tar.bz2
erlang.mk-master.zip
It's OK if the application is already loadedHEADmaster
-rw-r--r--core/elixir.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/elixir.mk b/core/elixir.mk
index 5feb7e6..7b6bdd8 100644
--- a/core/elixir.mk
+++ b/core/elixir.mk
@@ -182,7 +182,7 @@ endef
define compile_ex.erl
{ok, _} = application:ensure_all_started(elixir),
{ok, _} = application:ensure_all_started(mix),
- $(foreach dep,$(LOCAL_DEPS),ok = application:load($(dep)),)
+ $(foreach dep,$(LOCAL_DEPS),_ = application:load($(dep)),)
ModCode = list_to_atom("Elixir.Code"),
ModCode:put_compiler_option(ignore_module_conflict, true),
ModComp = list_to_atom("Elixir.Kernel.ParallelCompiler"),