summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-07-18 17:37:32 +0000
committerDan Armak <danarmak@gentoo.org>2002-07-18 17:37:32 +0000
commitc98d68da23126af867dcb15b3f269a481de6777f (patch)
treed06452e0c779c88bc4bdd2046b3adfca7aef6777 /eclass/cvs.eclass
parentfixed imporper KEYWORDS (diff)
downloadgentoo-2-c98d68da23126af867dcb15b3f269a481de6777f.tar.gz
gentoo-2-c98d68da23126af867dcb15b3f269a481de6777f.tar.bz2
gentoo-2-c98d68da23126af867dcb15b3f269a481de6777f.zip
fix handling of modules that don't have an admin/ subdir and have to use the one from kde-common, like kdenetwork
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r--eclass/cvs.eclass11
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass
index 64cf38dbcdf2..ebc83f1a3b10 100644
--- a/eclass/cvs.eclass
+++ b/eclass/cvs.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.3 2002/07/18 14:07:15 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.4 2002/07/18 17:37:32 danarmak Exp $
# This eclass provides the generic cvs fetching functions.
ECLASS=cvs
@@ -142,15 +142,6 @@ cvs_src_unpack() {
# delete them, so this has to be self-contained
cp -Rf ${ECVS_TOP_DIR}/${ECVS_MODULE} $WORKDIR
- # typically for kde cvs, the admin subdir lives in the kde-common module
- # which is also needed
- if [ ! -d "${WORKDIR}/${ECVS_MODULE}/admin" ]; then
- ECVS_MODULE="kde-common" cvs_fetch
- einfo "Copying admin/ subdir from module kde-common, $ECVS_TOP_DIR..."
- debug-print "Copying admin/ subdir from module kde-common, $ECVS_TOP_DIR..."
- cp -Rf ${ECVS_TOP_DIR}/${ECVS_MODULE} $WORKDIR
- fi
-
}
EXPORT_FUNCTIONS src_unpack