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:
parent
2b2195c36b
commit
fc32197d43
2
Makefile
2
Makefile
@ -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=
|
||||||
|
Loading…
Reference in New Issue
Block a user