Skip to content

Commit

Permalink
Use even --tags with git describe
Browse files Browse the repository at this point in the history
It was still generating a version string based on 1.1.
  • Loading branch information
league committed Jun 6, 2016
1 parent 3cc9840 commit 7713204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.version
Expand Up @@ -26,7 +26,7 @@ $(VERSION_SRC): Makefile.version
echo 'structure QCheckVersion = struct' >$@
echo 'val version = ($(MAJOR),$(MINOR)) ' >>$@
printf 'val context = "' >>$@
printf `git describe --dirty=+` >>$@
printf `git describe --tags --dirty=+` >>$@
echo '" end' >>$@

doc/qcheck-ver.texi: Makefile.version
Expand Down

0 comments on commit 7713204

Please sign in to comment.