From a616953b9aa996594459f0ea17e85432365582c2 Mon Sep 17 00:00:00 2001 From: Mateusz Piotrowski Date: Thu, 10 Jan 2019 17:44:10 +0100 Subject: [PATCH] Do not use .PHONY for $(PROMTOOL) (#1216) Adding $(PROMTOOL) to .PHONY makes it impossible to provide an alternative path to promtool. Signed-off-by: Mateusz Piotrowski <0mp@FreeBSD.org> --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 2565f565..25eafaf6 100644 --- a/Makefile +++ b/Makefile @@ -144,7 +144,6 @@ test-docker: .PHONY: promtool promtool: $(PROMTOOL) -.PHONY: $(PROMTOOL) $(PROMTOOL): $(eval PROMTOOL_TMP := $(shell mktemp -d)) curl -s -L $(PROMTOOL_URL) | tar -xvzf - -C $(PROMTOOL_TMP)