From b869bf0fd02cec4ab3ec0304e091495f492f1126 Mon Sep 17 00:00:00 2001 From: Peter Bacsko Date: Mon, 25 Nov 2024 22:19:14 +0100 Subject: [PATCH] [YUNIKORN-2987] Remove -installsuffix switch during build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8dbc072d..49963100 100644 --- a/Makefile +++ b/Makefile @@ -296,13 +296,13 @@ ifeq ($(REPRO),1) CGO_ENABLED=0 GOOS=linux GOARCH=\"${EXEC_ARCH}\" \ go build -a -o=${RELEASE_BIN_DIR}/${SERVER_BINARY} -trimpath -ldflags \ '-buildid= -extldflags \"-static\" -X main.version=${VERSION} -X main.date=${DATE}' \ - -tags netgo -installsuffix netgo \ + -tags netgo \ ./pkg/cmd/web/" else CGO_ENABLED=0 GOOS=linux GOARCH="${EXEC_ARCH}" \ "$(GO)" build -a -o=${RELEASE_BIN_DIR}/${SERVER_BINARY} -trimpath -ldflags \ '-buildid= -extldflags "-static" -X main.version=${VERSION} -X main.date=${DATE}' \ - -tags netgo -installsuffix netgo \ + -tags netgo \ ./pkg/cmd/web/ endif