From 965b1b4339348ebc165630a665d9ddca8d1d5c95 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Thu, 8 Apr 2021 05:34:25 +0000 Subject: [PATCH] Don't get LDFLAGS from the environment Refs #7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 918a8d0..ff94c8f 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ endif LUME_VERSION ?= $(shell git describe --tags --always) GIT_COMMIT := $(shell git rev-parse --short HEAD) -LDFLAGS := $(LDFLAGS) \ +LDFLAGS = \ -X git.kill0.net/chill9/lume/cmd.Version=$(LUME_VERSION) \ -X git.kill0.net/chill9/lume/cmd.BuildDate=$(BUILD_DATE) \ -X git.kill0.net/chill9/lume/cmd.GitCommit=$(GIT_COMMIT)