summaryrefslogtreecommitdiff
path: root/eclass
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
commit96f0ea0ee9ef79c9c939d9c8d242219b2db5fd78 (patch)
treebaa9e09386706f0ceca80af423ea3abd37e27fac /eclass
parenteclasses unmasked! (diff)
downloadhistorical-96f0ea0ee9ef79c9c939d9c8d242219b2db5fd78.tar.gz
historical-96f0ea0ee9ef79c9c939d9c8d242219b2db5fd78.tar.bz2
historical-96f0ea0ee9ef79c9c939d9c8d242219b2db5fd78.zip
stupid typo
Diffstat (limited to 'eclass')
-rw-r--r--eclass/debug.eclass4
-rw-r--r--eclass/inherit.eclass6
2 files changed, 5 insertions, 5 deletions
diff --git a/eclass/debug.eclass b/eclass/debug.eclass
index 065354f12902..6b6deee40aee 100644
--- a/eclass/debug.eclass
+++ b/eclass/debug.eclass
@@ -1,14 +1,14 @@
# 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/debug.eclass,v 1.2 2001/10/02 19:43:22 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/debug.eclass,v 1.3 2001/10/03 00:36:51 danarmak Exp $
# This provides functions for verbose output for debugging
# Note: we check whether these settings are set by "if [ "$FOO" ]; then".
# Therefore set them to true/false only - not yes/no or whatever.
# redirect output, unset to disable
-# use e.g. /dev/tty6 for quiet uotput out of harm's way.
+# use e.g. /dev/tty6 for quiet output out of harm's way.
# todo: add support for loging into a file.
DEBUG_OUTPUT=""
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