From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0A63F138378 for ; Sun, 27 Oct 2013 14:51:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E11D1E0D22; Sun, 27 Oct 2013 14:51:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84DF0E0D22 for ; Sun, 27 Oct 2013 14:51:30 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6803F33EFA4 for ; Sun, 27 Oct 2013 14:51:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 155CAE401D for ; Sun, 27 Oct 2013 14:51:28 +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: <1382885553.049d81a577c9a678888f5b33d8e9427d27ff73b2.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: 049d81a577c9a678888f5b33d8e9427d27ff73b2 X-VCS-Branch: master Date: Sun, 27 Oct 2013 14:51:28 +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: 55edb927-c140-4f0c-8d5b-a4cc91e69e52 X-Archives-Hash: fe3e3dd992ff9283cd6bb012e4eab344 commit: 049d81a577c9a678888f5b33d8e9427d27ff73b2 Author: Ulrich Müller gentoo org> AuthorDate: Sun Oct 27 14:52:33 2013 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Oct 27 14:52:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=049d81a5 Output git revision in configure. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fee1fe2..af5b792 100644 --- a/configure.ac +++ b/configure.ac @@ -78,11 +78,11 @@ AC_SUBST(EPREFIX) AC_MSG_CHECKING([whether building from git]) EXTRAVERSION="" if test -d ${GIT_DIR:-.git}; then - AC_MSG_RESULT(yes) GITREV=`git rev-parse --short HEAD` if test x$GITREV != x; then EXTRAVERSION="-git-$GITREV" fi + AC_MSG_RESULT([yes${GITREV:+, at revision $GITREV}]) else AC_MSG_RESULT(no) fi