aboutsummaryrefslogtreecommitdiffstats
path: root/erlang.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-08-27 14:03:21 +0300
committerLoïc Hoguin <[email protected]>2014-08-27 14:03:21 +0300
commit46acd26dd03fff85f2efc675b763fd7063b0e883 (patch)
treecba250c03dbba1b660d0892036c7078a5c2dfaef /erlang.mk
parent31621cba0265ed8e5cf9f48c698eaae3d8292b4f (diff)
downloaderlang.mk-46acd26dd03fff85f2efc675b763fd7063b0e883.tar.gz
erlang.mk-46acd26dd03fff85f2efc675b763fd7063b0e883.tar.bz2
erlang.mk-46acd26dd03fff85f2efc675b763fd7063b0e883.zip
Silence the dep fetching command
Diffstat (limited to 'erlang.mk')
-rw-r--r--erlang.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/erlang.mk b/erlang.mk
index ba9376b..fcd8eaf 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -128,13 +128,13 @@ $(DEPS_DIR)/$(1):
@mkdir -p $(DEPS_DIR)
@if [ ! -f $(PKG_FILE2) ]; then $(call core_http_get,$(PKG_FILE2),$(PKG_FILE_URL)); fi
ifeq (,$(dep_$(1)))
- DEPPKG=$$$$(awk 'BEGIN { FS = "\t" }; $$$$1 == "$(1)" { print $$$$2 " " $$$$3 " " $$$$4 }' $(PKG_FILE2);); \
+ @DEPPKG=$$$$(awk 'BEGIN { FS = "\t" }; $$$$1 == "$(1)" { print $$$$2 " " $$$$3 " " $$$$4 }' $(PKG_FILE2);); \
VS=$$$$(echo $$$$DEPPKG | cut -d " " -f1); \
REPO=$$$$(echo $$$$DEPPKG | cut -d " " -f2); \
COMMIT=$$$$(echo $$$$DEPPKG | cut -d " " -f3); \
$(call dep_fetch,$(1))
else
- VS=$(word 1,$(dep_$(1))); \
+ @VS=$(word 1,$(dep_$(1))); \
REPO=$(word 2,$(dep_$(1))); \
COMMIT=$(word 3,$(dep_$(1))); \
$(call dep_fetch,$(1))