From d8c439aad96c7d4196ee1a14fda2b6bb08457380 Mon Sep 17 00:00:00 2001 From: Kioubit Date: Tue, 4 Jan 2022 15:49:31 -0500 Subject: [PATCH] Remove unnecessary makefile option --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 846249a..e3afecc 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BINARY=pndpd MODULES= VERSION=`git describe --tags` -LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.Build=${BUILD}" +LDFLAGS=-ldflags "-X main.Version=${VERSION}" build: go build -tags=${MODULES} -o bin/${BINARY} . @@ -18,4 +18,4 @@ release-all: clean: find bin/ -type f -delete - if [ -d "bin/" ]; then rm -d bin/ ;fi \ No newline at end of file + if [ -d "bin/" ]; then rm -d bin/ ;fi