summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@dashbit.co>2023-05-02 20:55:55 +0200
committerJosé Valim <jose.valim@dashbit.co>2023-05-02 20:55:55 +0200
commit91e51f70ecd628350dd3b88d1f875d4ba61f4a70 (patch)
treef4b232bab1bdc492ac170bd84428ad60d0b1251d
parente0d251c50f569eb510f106c3242cb519076b0fc3 (diff)
downloadelixir-91e51f70ecd628350dd3b88d1f875d4ba61f4a70.tar.gz
Add :build_embedded back, closes #12542
-rw-r--r--lib/mix/lib/mix/tasks/compile.ex4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/mix/lib/mix/tasks/compile.ex b/lib/mix/lib/mix/tasks/compile.ex
index 758bed682..73cb788da 100644
--- a/lib/mix/lib/mix/tasks/compile.ex
+++ b/lib/mix/lib/mix/tasks/compile.ex
@@ -16,6 +16,10 @@ defmodule Mix.Tasks.Compile do
## Configuration
+ * `:build_embedded` - this option was used to copy all code and
+ priv content to the `_build` directory. However, this option no
+ longer has an effect as Elixir will now copy those at release time
+
* `:compilers` - compilers to run, defaults to `Mix.compilers/0`,
which are `[:yecc, :leex, :erlang, :elixir, :app]`.