From: Jason A. Donenfeld Date: Wed, 23 May 2018 15:30:35 +0000 (+0200) Subject: Don't cause a new fake gopath to call dep X-Git-Tag: 0.0.20180524~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a92a9109aa8214b18a020b6ab2b5a9dd9350a45;p=thirdparty%2Fwireguard-go.git Don't cause a new fake gopath to call dep --- diff --git a/Makefile b/Makefile index bef7edf..4cba1de 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ GO_IMPORT_PATH := git.zx2c4.com/wireguard-go ln -s ../../.. .gopath/src/$(GO_IMPORT_PATH) touch $@ -vendor/.created: Gopkg.toml Gopkg.lock .gopath/.created +vendor/.created: Gopkg.toml Gopkg.lock | .gopath/.created command -v dep >/dev/null || go get -v github.com/golang/dep/cmd/dep cd .gopath/src/$(GO_IMPORT_PATH) && dep ensure -vendor-only -v touch $@ @@ -36,7 +36,7 @@ install: wireguard-go clean: rm -f wireguard-go -update-dep: +update-dep: | .gopath/.created command -v dep >/dev/null || go get -v github.com/golang/dep/cmd/dep cd .gopath/src/$(GO_IMPORT_PATH) && dep ensure -update -v