Merge pull request #3848 from ipfs/fix/make/install-no-deps

make: fix `make install` not installing dependencies
This commit is contained in:
Jeromy Johnson 2017-03-31 08:53:06 -07:00 committed by GitHub
commit 1c50ec0c8e

View File

@ -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