Set the ldflags to static value within makefile (#709)

This commit is contained in:
Thomas Boerger 2017-01-20 18:34:20 +01:00 committed by GitHub
parent 7e401b9e39
commit 369972b116
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ BINDATA := modules/{options,public,templates}/bindata.go
STYLESHEETS := $(wildcard public/less/index.less public/less/_*.less)
JAVASCRIPTS :=
LDFLAGS ?= -X "main.Version=$(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')"
LDFLAGS := -X "main.Version=$(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')"
TARGETS ?= linux/*,darwin/*,windows/*
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)