summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2001-10-03 00:36:51 +0000
committerDan Armak <danarmak@gentoo.org>2001-10-03 00:36:51 +0000
commit349acf952a386de9434eb78a3a1839b4e9346322 (patch)
tree9b69f87d4e5b1beb875aaf4dc3028f8fe84036f9 /eclass/inherit.eclass
parenteclasses unmasked! (diff)
downloadgentoo-2-349acf952a386de9434eb78a3a1839b4e9346322.tar.gz
gentoo-2-349acf952a386de9434eb78a3a1839b4e9346322.tar.bz2
gentoo-2-349acf952a386de9434eb78a3a1839b4e9346322.zip
stupid typo
Diffstat (limited to 'eclass/inherit.eclass')
-rw-r--r--eclass/inherit.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/inherit.eclass b/eclass/inherit.eclass
index eba0ef0ed170..2905cc51c6d9 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.6 2001/10/02 20:23:47 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/inherit.eclass,v 1.7 2001/10/03 00:36:51 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