From c9b190a7d9e1e7a85fa6635668e999784c44f6a6 Mon Sep 17 00:00:00 2001 From: Chris Doherty Date: Fri, 23 Dec 2022 14:59:12 -0600 Subject: [PATCH] Fix CGO_ENABLED in build recipe Signed-off-by: Chris Doherty --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee363727e..0d4ce258b 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ build: $(BINARIES) ## Build all tink binaries. Cross build by setting GOOS and G # See https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html. .PHONY: $(BINARIES) $(BINARIES): - CGO_ENABLED=false \ + CGO_ENABLED=0 \ GOOS=$(GOOS) \ GOARCH=$(GOARCH) \ $(GO) build \