Fix build for people without $GOPATH/bin in $PATH.

This commit is contained in:
Julius Volz 2016-04-22 18:16:00 +02:00
parent b8b114a82a
commit 7735d0da63

View file

@ -12,6 +12,7 @@
# limitations under the License. # limitations under the License.
GO := GO15VENDOREXPERIMENT=1 go GO := GO15VENDOREXPERIMENT=1 go
PROMU := $(GOPATH)/bin/promu
pkgs = $(shell $(GO) list ./... | grep -v /vendor/) pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
PREFIX ?= $(shell pwd) PREFIX ?= $(shell pwd)
@ -48,11 +49,11 @@ vet:
build: promu build: promu
@echo ">> building binaries" @echo ">> building binaries"
@promu build --prefix $(PREFIX) @$(PROMU) build --prefix $(PREFIX)
tarball: promu tarball: promu
@echo ">> building release tarball" @echo ">> building release tarball"
@promu tarball --prefix $(PREFIX) $(BIN_DIR) @$(PROMU) tarball --prefix $(PREFIX) $(BIN_DIR)
docker: docker:
@echo ">> building docker image" @echo ">> building docker image"