commit: 52fc546e3590d79921420705bd1771298656fa65
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue May 20 08:03:21 2014 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue May 20 08:03:21 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=52fc546e
Add "git" to EXTRAVERSION.
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2f0227f..ea3c58e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -80,9 +80,9 @@ EXTRAVERSION=""
if test -d ${GIT_DIR:-.git}; then
COMMIT=`git describe --always HEAD`
if test x$COMMIT != x; then
- EXTRAVERSION=", commit $COMMIT"
+ EXTRAVERSION=", git commit $COMMIT"
fi
- AC_MSG_RESULT([yes$EXTRAVERSION])
+ AC_MSG_RESULT([yes${COMMIT:+, at commit $COMMIT}])
else
AC_MSG_RESULT(no)
fi