From 575879892347a19b1b82e99e5917bf214d48abcb Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Sat, 19 Nov 2011 09:04:21 -0800 Subject: [PATCH] Improve version tag from git. The --always flag to git describe is harmless in the normal case, and helpful in some special cases. Also add the --dirty flag to get extra interesting details. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index dba2617a8..7eac1a986 100644 --- a/Makefile.in +++ b/Makefile.in @@ -278,7 +278,7 @@ endif version_tag.h version: @if $(GIT_PRESENT) && test -d $(srcdir)/.git; then \ echo "Using git-describe for VERSION_TAG"; \ - tmp=`$(GIT) --git-dir $(srcdir)/.git describe \ + tmp=`$(GIT) --git-dir $(srcdir)/.git describe --always --dirty \ | sed -e 's;\(.*\);#define VERSION_TAG "\1";'`; \ echo "$$tmp" | diff - version_tag.h > /dev/null 2>&1 || echo "$$tmp" > version_tag.h || exit 1; \ elif test -r $(srcdir)/version_tag.h; then \