From ca25053cd58a0e18243ccd1b0a48a23355d94744 Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Mon, 28 Mar 2022 11:40:27 -0300 Subject: [PATCH] fix: add common dependencies to `%-pkg` target in makefile On a fresh clone, this will setup rebar, the dashboard and merge the configs. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fea7c6c87..c86152bb8 100644 --- a/Makefile +++ b/Makefile @@ -193,7 +193,7 @@ $(foreach zt,$(ALL_TGZS),$(eval $(call gen-tgz-target,$(zt)))) ## A pkg target depend on a regular release .PHONY: $(PKG_PROFILES) define gen-pkg-target -$1: +$1: $(COMMON_DEPS) @$(BUILD) $1 pkg endef $(foreach pt,$(PKG_PROFILES),$(eval $(call gen-pkg-target,$(pt))))