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 <ido@wizery.com>
This commit is contained in:
Ido Yariv 2016-04-09 10:05:33 -04:00
parent 8f250ceb47
commit 77ce689fe0
1 changed files with 1 additions and 1 deletions

View File

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