From 8c55980bb0e8b11eee0913ee9c7e00792154266d Mon Sep 17 00:00:00 2001 From: Fabio Bertinatto Date: Thu, 27 Jan 2022 10:38:21 -0300 Subject: [PATCH] UPSTREAM: : Do not download binaries from internet at build time --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6b10c4e06..2afe8b0cec 100644 --- a/Makefile +++ b/Makefile @@ -155,7 +155,7 @@ else CONTROLLER_GEN=$(shell which controller-gen) endif -$(SYNCER_BIN): $(SYNCER_BIN_SRCS) syncer_manifest +$(SYNCER_BIN): $(SYNCER_BIN_SRCS) CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(GOFLAGS_VENDOR) -ldflags '$(LDFLAGS_SYNCER)' -o $(abspath $@) $< @touch $@