Skip to content

Commit 05ab231

Browse files
committed
Remove REBAR_BARE_COMPILER_OUTPUT_DIR to fix issues with build_embedded
See #10978.
1 parent 9fcdf23 commit 05ab231

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/mix/lib/mix/tasks/deps.compile.ex

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,9 @@ defmodule Mix.Tasks.Deps.Compile do
197197
config_path = Path.join(dep_path, "mix.rebar.config")
198198
lib_path = Path.join(config[:env_path], "lib/*/ebin")
199199

200-
# REBAR_BARE_COMPILER_OUTPUT_DIR is only honored by rebar3 >= 3.14
201200
env = [
202201
{"REBAR_CONFIG", config_path},
203-
{"TERM", "dumb"},
204-
{"REBAR_BARE_COMPILER_OUTPUT_DIR", dep_path}
202+
{"TERM", "dumb"}
205203
]
206204

207205
cmd = "#{rebar_cmd(dep)} bare compile --paths #{lib_path}"

0 commit comments

Comments
 (0)