From 8a92a9109aa8214b18a020b6ab2b5a9dd9350a45 Mon Sep 17 00:00:00 2001
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
Date: Wed, 23 May 2018 17:30:35 +0200
Subject: [PATCH] Don't cause a new fake gopath to call dep

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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