Makefile: use git describe for better commit versions

This commit is contained in:
Conner Fromknecht 2018-09-20 03:24:07 -07:00
parent 0903fe3183
commit ecc5d267e3
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -22,8 +22,8 @@ HAVE_LINTER := $(shell command -v $(LINT_BIN) 2> /dev/null)
BTCD_DIR :=${GOPATH}/src/$(BTCD_PKG)
COMMIT := $(shell git rev-parse HEAD)
LDFLAGS := -ldflags "-X main.Commit=$(COMMIT)"
COMMIT := $(shell git describe --abbrev=40 --dirty --broken)
LDFLAGS := -ldflags "-X $(PKG)/build.Commit=$(COMMIT)"
GLIDE_COMMIT := 84607742b10f492430762d038e954236bbaf23f7
BTCD_COMMIT := $(shell cat Gopkg.toml | \