diff options
author | Tyler Hughes <[email protected]> | 2023-06-20 17:53:55 +0000 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-06-21 12:13:54 +0200 |
commit | 04c473a7e8970f56337617e3574e0ed9351a174b (patch) | |
tree | 4bf9126c9ea4f5305e4b7212450ed961d52e155d | |
parent | e1e3d15a1b211fc60b83557a2ea54ea3741f3e80 (diff) | |
download | erlang.mk-04c473a7e8970f56337617e3574e0ed9351a174b.tar.gz erlang.mk-04c473a7e8970f56337617e3574e0ed9351a174b.tar.bz2 erlang.mk-04c473a7e8970f56337617e3574e0ed9351a174b.zip |
Fix verbosity regression
-rw-r--r-- | core/deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk index 21281ec..99f9ed1 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -839,7 +839,7 @@ endif .PHONY: autopatch-$(call dep_name,$1) autopatch-$(call dep_name,$1):: - if [ "$1" = "elixir" -a "$(ELIXIR_PATCH)" ]; then \ + $(verbose) if [ "$1" = "elixir" -a "$(ELIXIR_PATCH)" ]; then \ ln -s lib/elixir/ebin $(DEPS_DIR)/elixir/; \ else \ $$(call dep_autopatch,$(call dep_name,$1)) \ |