Makefile: Remove `deps` from scripts' dependencies
This is useless because `app` already depends on `deps`. Furthermore, `deps` is a phony target, and thus always considered outdated. As a consequence, the scripts' recipe need to always be executed again. Therefore, adding `deps` again as a dependency just increases the time to build for nothing.
This commit is contained in:
parent
06b5ac2ee8
commit
7f108ae997
|
|
@ -81,7 +81,7 @@ rabbitmqctl_srcs := mix.exs \
|
|||
# it's missing. Another way to do it is to use `mix local.hex` but it
|
||||
# can't be integrated in an alias and doing it from the Makefile isn't
|
||||
# practical.
|
||||
$(ACTUAL_ESCRIPTS): $(rabbitmqctl_srcs) deps
|
||||
$(ACTUAL_ESCRIPTS): $(rabbitmqctl_srcs)
|
||||
$(gen_verbose) echo y | mix make_all
|
||||
|
||||
$(LINKED_ESCRIPTS):
|
||||
|
|
|
|||
Loading…
Reference in New Issue