commit: 54c428513a6a7d4d2b773f056237f4ee2cd8d857 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat Jan 17 23:56:57 2015 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat Jan 17 23:56:57 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=54c42851
Use "git describe --long" in configure. * configure.ac (EXTRAVERSION): Use "git describe --long". --- ChangeLog | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 01b8d14..22cab2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-01-18 Ulrich Müller <u...@gentoo.org> + + * configure.ac (EXTRAVERSION): Use "git describe --long". + 2015-01-17 Ulrich Müller <u...@gentoo.org> * modules/rc.eselect: Be compatible with new OpenRC, bug 536822. diff --git a/configure.ac b/configure.ac index ab6e76a..d2eb07d 100644 --- a/configure.ac +++ b/configure.ac @@ -78,7 +78,7 @@ AC_SUBST(EPREFIX) AC_MSG_CHECKING([whether building from git]) EXTRAVERSION="" if test -d ${GIT_DIR:-.git}; then - COMMIT=`git describe --always HEAD` + COMMIT=`git describe --long --always HEAD` if test x$COMMIT != x; then EXTRAVERSION=", git commit $COMMIT" fi