diff options
author | Brian Harring <ferringb@gentoo.org> | 2006-01-07 23:46:57 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2006-01-07 23:46:57 +0000 |
commit | f885b708ebc5effedafc5c87df00ee55fcf7fd37 (patch) | |
tree | 46d85b0e0af39c955555a39710f24a32a63cf1e5 /eclass/horde.eclass | |
parent | make sure all S are quoted (diff) | |
download | historical-f885b708ebc5effedafc5c87df00ee55fcf7fd37.tar.gz historical-f885b708ebc5effedafc5c87df00ee55fcf7fd37.tar.bz2 historical-f885b708ebc5effedafc5c87df00ee55fcf7fd37.zip |
look ma, I'm touching eclasses!
introducing PORTAGE_ACTUAL_DISTDIR support for bug 117440, DISTDIR symlink indirection (blocks all unstated access to DISTDIR).
Also breaks these eclasses since they have unstated access...
Diffstat (limited to 'eclass/horde.eclass')
-rw-r--r-- | eclass/horde.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass index 759a725ca755..42c03f4e8391 100644 --- a/eclass/horde.eclass +++ b/eclass/horde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.26 2005/12/13 03:17:43 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.27 2006/01/07 23:46:57 ferringb Exp $ # # Help manage the horde project http://www.horde.org/ # @@ -40,7 +40,7 @@ if [[ ${PN} != ${PN/-cvs} ]] ; then ECVS_SERVER="anoncvs.horde.org:/repository" ECVS_MODULE="${HORDE_PN}" - ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}" + ECVS_TOP_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/cvs-src/${PN}" ECVS_USER="cvsread" ECVS_PASS="horde" |