Makefile: fix overriding go command

There still was one place that's calling the `go` command directly
instead of using the $(GO) variable.

Fixes: 9ea25634bd
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2023-08-07 17:18:54 +02:00
parent 2b2195c36b
commit fc32197d43

View File

@ -124,7 +124,7 @@ ifdef SKIPTESTS
endif endif
#Replaces ":" (*nix), ";" (windows) with newline for easy parsing #Replaces ":" (*nix), ";" (windows) with newline for easy parsing
GOPATHS=$(shell go env GOPATH | tr ":" "\n" | tr ";" "\n") GOPATHS=$(shell $(GO) env GOPATH | tr ":" "\n" | tr ";" "\n")
TESTFLAGS_RACE= TESTFLAGS_RACE=
GO_BUILD_FLAGS= GO_BUILD_FLAGS=