diff options
author | Christian Hesse <mail@eworm.de> | 2017-10-20 11:22:58 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2017-10-20 11:22:58 +0200 |
commit | 8113ffe5a4172b2e352b9a58cb043c103c42cb26 (patch) | |
tree | 6889277541f755c132c0bb5574e26479cc48d79c | |
parent | 95152dd5c64b84a4a319e8de821fec847ddcbf4d (diff) | |
download | nullshell-8113ffe5a4172b2e352b9a58cb043c103c42cb26.tar.gz nullshell-8113ffe5a4172b2e352b9a58cb043c103c42cb26.tar.zst |
use annotated (and signed) tags only
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ nullshell: nullshell.c config.h version.h version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile echo "#ifndef VERSION" > $@ - echo "#define VERSION \"$(shell git describe --tags --long 2>/dev/null || echo ${VERSION})\"" >> $@ + echo "#define VERSION \"$(shell git describe --long 2>/dev/null || echo ${VERSION})\"" >> $@ echo "#endif" >> $@ config.h: |