diff options
author | 2010-08-24 08:59:56 +0000 | |
---|---|---|
committer | 2010-08-24 08:59:56 +0000 | |
commit | c645ba4edca64db4c3943ddb8c1395079165f7da (patch) | |
tree | 329fd7c2a5bde5fcda0b453f27e3593dfee2e194 /eclass/xorg-2.eclass | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-c645ba4edca64db4c3943ddb8c1395079165f7da.tar.gz gentoo-2-c645ba4edca64db4c3943ddb8c1395079165f7da.tar.bz2 gentoo-2-c645ba4edca64db4c3943ddb8c1395079165f7da.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 |