From 77ce689fe01efe4fde3088fc09175a362788b746 Mon Sep 17 00:00:00 2001 From: Ido Yariv Date: Sat, 9 Apr 2016 10:05:33 -0400 Subject: [PATCH] Don't use pre-defined GOPATH All packages should be vendored, so there's no need to include the pre-defined GOPATH in the search path. Signed-off-by: Ido Yariv --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index def86a95..9cc72cee 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ RUNC_BUILD_PATH=/go/src/github.com/opencontainers/runc/runc RUNC_INSTANCE=runc_dev COMMIT=$(shell git rev-parse HEAD 2> /dev/null || true) RUNC_LINK=$(CURDIR)/Godeps/_workspace/src/github.com/opencontainers/runc -export GOPATH:=$(CURDIR)/Godeps/_workspace:$(GOPATH) +export GOPATH:=$(CURDIR)/Godeps/_workspace .PHONY=dbuild