aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a02a842..acf2b5c 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,10 @@
11# See the License for the specific language governing permissions and 11# See the License for the specific language governing permissions and
12# limitations under the License. 12# limitations under the License.
13 13
14GO ?= GO15VENDOREXPERIMENT=1 go 14GO ?= GO15VENDOREXPERIMENT=1 go
15PROMU ?= $(GOPATH)/bin/promu 15GOPATH := $(firstword $(subst :, ,$(GOPATH)))
16pkgs = $(shell $(GO) list ./... | grep -v /vendor/) 16PROMU ?= $(GOPATH)/bin/promu
17pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
17 18
18PREFIX ?= $(shell pwd) 19PREFIX ?= $(shell pwd)
19BIN_DIR ?= $(shell pwd) 20BIN_DIR ?= $(shell pwd)