diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-10-03 17:10:16 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-10-03 17:10:16 +0000 |
commit | f4877b18e9b9f1aa69923e25d4e8a86afc23503e (patch) | |
tree | b11f714a7fd38acd876f79b191641c44f953be6b /eclass/inherit.eclass | |
parent | update openssh (diff) | |
download | historical-f4877b18e9b9f1aa69923e25d4e8a86afc23503e.tar.gz historical-f4877b18e9b9f1aa69923e25d4e8a86afc23503e.tar.bz2 historical-f4877b18e9b9f1aa69923e25d4e8a86afc23503e.zip |
OK, these are eclasses v3.2:
1. aded kde-objprelink.eclass
2. modified ebuilds accordingly, updated documentation
3. removed old koffice beta ebuilds
4. added new inheriting ebuild for kdelibs (a special case)
5. misc
Diffstat (limited to 'eclass/inherit.eclass')
-rw-r--r-- | eclass/inherit.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/inherit.eclass b/eclass/inherit.eclass index 2905cc51c6d9..ba981df71853 100644 --- a/eclass/inherit.eclass +++ b/eclass/inherit.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/inherit.eclass,v 1.7 2001/10/03 00:36:51 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/inherit.eclass,v 1.8 2001/10/03 17:10:16 danarmak Exp $ # This eclass provides the inherit() function. In the future it will be placed in ebuild.sh, but for now drobbins # doesn't want to make a new portage just for my testing, so every eclass/ebuild will source this file manually and # then inherit(). This way when the tmie comes for this to move into stable ebuild.sh, we can just delete the source lines. @@ -14,8 +14,8 @@ inherit() { location="${ECLASSDIR}/${1}.eclass" # someday we'll do this the right way. # for now, disable by deafult because it creates a lot extra sourcing. - #. ${ECLASSDIR}/debug.eclass - #debug-print "inherit: $1 -> $location" + # . ${ECLASSDIR}/debug.eclass + # debug-print "inherit: $1 -> $location" source "$location" shift done |