From 52a293ae2da9c4b0782c4898eb22f03a9ea48c0f Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Fri, 31 Mar 2017 13:52:59 +0200 Subject: [PATCH] make: fix `make install` not installing dependencies License: MIT Signed-off-by: Jakub Sztandera --- cmd/ipfs/Rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ipfs/Rules.mk b/cmd/ipfs/Rules.mk index 60b5fa6fb..c44ef7ee7 100644 --- a/cmd/ipfs/Rules.mk +++ b/cmd/ipfs/Rules.mk @@ -22,7 +22,7 @@ $(IPFS_BIN_$(d)): $(d) $$(DEPS_GO) ALWAYS #| $(DEPS_OO_$(d)) $(d)-install: GOFLAGS += $(cmd/ipfs_flags) -$(d)-install: +$(d)-install: $(d) $$(DEPS_GO) ALWAYS go install $(go-flags-with-tags) ./cmd/ipfs .PHONY: $(d)-install