commit: a39b2b8c2efc1ff95e4c1b5b94e2b9774c2d7ddd
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue May 20 07:46:26 2014 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue May 20 07:46:26 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=a39b2b8c
Automake doesn't play well with leading whitespace in variables.
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 63081e7..2f0227f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -80,7 +80,7 @@ EXTRAVERSION=""
if test -d ${GIT_DIR:-.git}; then
COMMIT=`git describe --always HEAD`
if test x$COMMIT != x; then
- EXTRAVERSION=" (commit $COMMIT)"
+ EXTRAVERSION=", commit $COMMIT"
fi
AC_MSG_RESULT([yes$EXTRAVERSION])
else