Merge pull request #1657 from joshuarubin/master

fix build with multi-part $GOPATH
This commit is contained in:
Björn Rabenstein 2016-06-06 11:35:49 +02:00
commit 2bcf712e29

View file

@ -12,7 +12,8 @@
# limitations under the License.
GO := GO15VENDOREXPERIMENT=1 go
PROMU := $(GOPATH)/bin/promu
FIRST_GOPATH := $(firstword $(subst :, ,$(GOPATH)))
PROMU := $(FIRST_GOPATH)/bin/promu
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
PREFIX ?= $(shell pwd)