diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-05-17 09:25:55 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-05-17 09:25:55 +0000 |
commit | a65a3d5f48c8713d161cc2881a0c6e50ede93736 (patch) | |
tree | 7d0c6befdc92dcfa3dfd2ca6e756b6962d2c8260 /eclass | |
parent | keyword ~x86-fbsd, bug #236214 (diff) | |
download | historical-a65a3d5f48c8713d161cc2881a0c6e50ede93736.tar.gz historical-a65a3d5f48c8713d161cc2881a0c6e50ede93736.tar.bz2 historical-a65a3d5f48c8713d161cc2881a0c6e50ede93736.zip |
x should be declared local. Bug 264466. Thanks to Ulm for noticing and cattleprodding me.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/base.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index d54b5b3e0bae..19e14b8fae27 100644 --- a/eclass/base.eclass +++ b/eclass/base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.37 2009/01/18 18:21:08 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.38 2009/05/17 09:25:55 loki_val Exp $ # @ECLASS: base.eclass # @MAINTAINER: @@ -69,6 +69,7 @@ base_src_prepare() { # The base_src_util function is the grunt function for base src_unpack # and base src_prepare. base_src_util() { + local x debug-print-function $FUNCNAME "$@" |