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 DC66D1381FA for ; Tue, 20 May 2014 07:46:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72213E0933; Tue, 20 May 2014 07:46:25 +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 05290E0933 for ; Tue, 20 May 2014 07:46:24 +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 0954B33FFF6 for ; Tue, 20 May 2014 07:46:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id A0F311818D for ; Tue, 20 May 2014 07:46:22 +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: <1400571986.a39b2b8c2efc1ff95e4c1b5b94e2b9774c2d7ddd.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: a39b2b8c2efc1ff95e4c1b5b94e2b9774c2d7ddd X-VCS-Branch: master Date: Tue, 20 May 2014 07:46:22 +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: 7da09595-fd84-4da3-af68-7e2e2948a76b X-Archives-Hash: 2b44370e2b17a95846c9b120be085cb3 commit: a39b2b8c2efc1ff95e4c1b5b94e2b9774c2d7ddd Author: Ulrich Müller gentoo org> AuthorDate: Tue May 20 07:46:26 2014 +0000 Commit: Ulrich Müller gentoo 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