@cryptotaxi247 / kubo / commits / 52a293ae2

make: fix `make install` not installing dependencies

License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>

Jakub Sztandera committed Mar 31, 2017 at 13:52 UTC 52a293ae2da9c4b0782c4898eb22f03a9ea48c0f
1 file changed +1 -1
cmd/ipfs/Rules.mk
+1 -1
@@ -22,7 +22,7 @@ $(IPFS_BIN_$(d)): $(d) $$(DEPS_GO) ALWAYS #| $(DEPS_OO_$(d))
22
23
24 $(d)-install: GOFLAGS += $(cmd/ipfs_flags)
25 -$(d)-install:
25 +$(d)-install: $(d) $$(DEPS_GO) ALWAYS
26 go install $(go-flags-with-tags) ./cmd/ipfs
27 .PHONY: $(d)-install
28