We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b34a57 + ab43993 commit 1f91fd3Copy full SHA for 1f91fd3
lib/mix/lib/mix/tasks/deps.compile.ex
@@ -136,11 +136,13 @@ defmodule Mix.Tasks.Deps.Compile do
136
end
137
138
defp do_make(dep) do
139
- if match?({:win32, _}, :os.type) and File.regular?("Makefile.win") do
140
- do_command(dep, "nmake /F Makefile.win")
+ command = if match?({:win32, _}, :os.type) and File.regular?("Makefile.win") do
+ "nmake /F Makefile.win"
141
else
142
- do_command(dep, "make")
+ "make"
143
144
+ Mix.shell.info("==> #{dep.app} (#{command})")
145
+ do_command(dep, command)
146
147
148
defp do_compile(%Mix.Dep{app: app, opts: opts} = dep) do
0 commit comments