aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Richey joerichey@google.com <joerichey@google.com>2017-10-12 17:59:45 -0700
committerJoseph Richey <joerichey94@gmail.com>2017-10-19 02:22:25 -0700
commitb4299090c3e503ba0c49a6086b1a46c218ca45f4 (patch)
tree889adbf3da9616a5c6eaa783291e5f94c01955a2 /Makefile
parent921f1c977c4e0704f61e3a7c092d3a4317ab278c (diff)
Command, Context, command line splitting setup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index eb57d09..570936b 100644
--- a/Makefile
+++ b/Makefile
@@ -87,10 +87,10 @@ GO_LINK_FLAGS ?= -s -w
# Pass the version to the command line program (pulled from tags).
TAG_VERSION = $(shell git describe --tags)
VERSION = $(if $(TAG_VERSION),$(TAG_VERSION),$(RELEASE_VERSION))
-VERSION_FLAG = -X "main.version=$(VERSION)"
+VERSION_FLAG = -X "$(PKG_DIR)/cmd.VersionTag=$(VERSION)"
# Pass the current date and time to the command line program.
-DATE_FLAG = -X "main.buildTime=$(shell date)"
+DATE_FLAG = -X "$(PKG_DIR)/cmd.BuildTimeTag=$(shell date)"
# Add the version, date, and any specified LDFLAGS to any user-specified flags.
override GO_LINK_FLAGS += $(VERSION_FLAG) $(DATE_FLAG) -extldflags "$(LDFLAGS)"
# Add the link flags to any user-specified flags.