Makefile to detect golang path dynamically.

This commit is contained in:
Shishir Mahajan 2020-07-09 18:33:35 -07:00
parent 37a9060c55
commit 653fd71988
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

View File

@ -1,5 +1,8 @@
BINARY ?= containerd-driver
GOLANG ?= /usr/local/go/bin/go
ifndef $(GOLANG)
GOLANG=$(shell which go)
export GOLANG
endif
export GO111MODULE=on