From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OnpMO-0008Nv-RM for garchives@archives.gentoo.org; Tue, 24 Aug 2010 09:00:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F12AE09CE; Tue, 24 Aug 2010 08:59:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 666F7E09CE for ; Tue, 24 Aug 2010 08:59:58 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1E201B419E for ; Tue, 24 Aug 2010 08:59:57 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2230) id 609542004B; Tue, 24 Aug 2010 08:59:56 +0000 (UTC) From: "Tomas Chvatal (scarabeus)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, scarabeus@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: xorg-2.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: xorg-2.eclass X-VCS-Directories: eclass X-VCS-Committer: scarabeus X-VCS-Committer-Name: Tomas Chvatal Content-Type: text/plain; charset=utf8 Message-Id: <20100824085956.609542004B@flycatcher.gentoo.org> Date: Tue, 24 Aug 2010 08:59:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 06f983ae-a84c-4cef-896b-7aa4a124e31c X-Archives-Hash: a5bc2daa2669f2915b75e6693d8383bb scarabeus 10/08/24 08:59:56 Modified: xorg-2.eclass Log: Fix wrong variable usage. Revision Changes Path 1.12 eclass/xorg-2.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xorg-2.ecla= ss?rev=3D1.12&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xorg-2.ecla= ss?rev=3D1.12&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xorg-2.ecla= ss?r1=3D1.11&r2=3D1.12 Index: xorg-2.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- xorg-2.eclass 22 Aug 2010 08:25:26 -0000 1.11 +++ xorg-2.eclass 24 Aug 2010 08:59:56 -0000 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.11 2010/08/2= 2 08:25:26 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.12 2010/08/2= 4 08:59:56 scarabeus Exp $ # # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -310,7 +310,7 @@ =20 if [[ -n ${GIT_ECLASS} ]]; then pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null - git log ${GIT_TREE} > "${S}"/ChangeLog + git log ${EGIT_COMMIT} > "${S}"/ChangeLog popd > /dev/null fi =20