diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-07-18 17:37:32 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-07-18 17:37:32 +0000 |
commit | 2bf2db594ce542f6354ea753cc69ea844a7e6c6f (patch) | |
tree | eaecb59932a36958a2a54acea17133a8440ef79f /eclass/cvs.eclass | |
parent | fixed imporper KEYWORDS (diff) | |
download | historical-2bf2db594ce542f6354ea753cc69ea844a7e6c6f.tar.gz historical-2bf2db594ce542f6354ea753cc69ea844a7e6c6f.tar.bz2 historical-2bf2db594ce542f6354ea753cc69ea844a7e6c6f.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.eclass | 11 |
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 |