diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-08-24 08:59:56 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-08-24 08:59:56 +0000 |
commit | a82458931d45030c62a147d4766022d80a9d7553 (patch) | |
tree | b0749e53b1238030102dab7a79b80b45ed17ae7c /eclass/xorg-2.eclass | |
parent | Automated update of use.local.desc (diff) | |
download | historical-a82458931d45030c62a147d4766022d80a9d7553.tar.gz historical-a82458931d45030c62a147d4766022d80a9d7553.tar.bz2 historical-a82458931d45030c62a147d4766022d80a9d7553.zip |
Fix wrong variable usage.
Diffstat (limited to 'eclass/xorg-2.eclass')
-rw-r--r-- | eclass/xorg-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass index 99f3b74e8f89..44001195596b 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -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/22 08:25:26 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.12 2010/08/24 08:59:56 scarabeus Exp $ # # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -310,7 +310,7 @@ xorg-2_src_install() { 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 |