summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonas <cez81@users.noreply.github.com>2017-02-28 01:40:02 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2017-02-28 08:40:02 +0800
commita2019775903902622dc80c2231f105e3213f8a60 (patch)
tree58bcd998fe2d856ffd18690f8741d5dd03638c56 /Makefile
parent8947b711aa31452a97b22a93f28169fe3f990c2b (diff)
downloadgitea-a2019775903902622dc80c2231f105e3213f8a60.tar.gz
gitea-a2019775903902622dc80c2231f105e3213f8a60.zip
Fix for #828: Embed build tags (#1051)
* Fix for #828 Add build tags to ldflags and print in version output Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Reworked formatBuiltWith function Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Add tags to version information in admin panel Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Added new variable for use on admin page. Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Fixed incorrect indentation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 212aa4fdc1..9dad28910a 100644
--- a/Makefile
+++ b/Makefile
@@ -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//')" -X "main.Tags=$(TAGS)"
TARGETS ?= linux/*,darwin/*,windows/*
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)