From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D5DEA1381FA for ; Tue, 20 May 2014 08:03:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64418E0B8C; Tue, 20 May 2014 08:03:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E72C3E0B8C for ; Tue, 20 May 2014 08:03:11 +0000 (UTC) Received: from spoonbill.gentoo.org (unknown [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1839033FF98 for ; Tue, 20 May 2014 08:03:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id B8EE11818D for ; Tue, 20 May 2014 08:03:09 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1400573001.52fc546e3590d79921420705bd1771298656fa65.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: / X-VCS-Repository: proj/eselect X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 52fc546e3590d79921420705bd1771298656fa65 X-VCS-Branch: master Date: Tue, 20 May 2014 08:03:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b16bb6f8-ed89-4b0e-806a-70a3a1cdb6ab X-Archives-Hash: cb51ea140c9f99f1dc7d849f48df36e8 commit: 52fc546e3590d79921420705bd1771298656fa65 Author: Ulrich Müller gentoo org> AuthorDate: Tue May 20 08:03:21 2014 +0000 Commit: Ulrich Müller gentoo 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