diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-12-22 14:52:29 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-12-22 14:52:29 +0000 |
commit | 0ee8ee11b95bbdae3daeb09aafa693c31c314c6f (patch) | |
tree | 6d1b12baf3f0cb822f758b3fba5171a544f82aeb /eclass/base.eclass | |
parent | new version (diff) | |
download | historical-0ee8ee11b95bbdae3daeb09aafa693c31c314c6f.tar.gz historical-0ee8ee11b95bbdae3daeb09aafa693c31c314c6f.tar.bz2 historical-0ee8ee11b95bbdae3daeb09aafa693c31c314c6f.zip |
I've modified all functions to use the bash builtin variable $FUNCNAME when calling debug-print-function
Diffstat (limited to 'eclass/base.eclass')
-rw-r--r-- | eclass/base.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index b76fffc9bed6..d03fe63f6be6 100644 --- a/eclass/base.eclass +++ b/eclass/base.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/base.eclass,v 1.7 2001/11/16 12:50:41 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.8 2001/12/22 14:52:29 danarmak Exp $ # The base eclass defines some default functions and variables. Nearly everything # else inherits from here. inherit virtual || die @@ -12,7 +12,7 @@ DESCRIPTION="Based on the $ECLASS eclass" base_src_unpack() { - debug-print-function base_src_unpack $* + debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_unpack all while [ "$1" ]; do @@ -40,7 +40,7 @@ base_src_unpack() { base_src_compile() { - debug-print-function base_src_compile $* + debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_compile all while [ "$1" ]; do @@ -67,7 +67,7 @@ base_src_compile() { base_src_install() { - debug-print-function base_src_install $* + debug-print-function $FUNCNAME $* [ -z "$1" ] && base_src_install all while [ "$1" ]; do |