From 541fc19e54caadc0ec4445e5aa71726854d30ec4 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 4 May 2021 11:59:02 +0200 Subject: [PATCH] Makefile: allow overriding go command by environment This is required for environments/build systems where a specific go version / command needs to be used. Signed-off-by: Enrico Weigelt, metux IT consult --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d43f3537..aff6d531c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CONTAINER_ENGINE := docker -GO := go +GO ?= go PREFIX ?= /usr/local BINDIR := $(PREFIX)/sbin