--- eclass/xfconf.eclass 2010/03/26 11:59:08 1.12 +++ eclass/xfconf.eclass 2010/03/26 12:10:14 1.13 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.12 2010/03/26 11:59:08 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.13 2010/03/26 12:10:14 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -65,17 +65,17 @@ # @FUNCTION: xfconf_use_debug # @RETURN: # Return --enable-debug, null, --enable-debug=full or --disable-debug based on -# I_KNOW_WHAT_I_AM_DOING variable and USE debug +# XFCONF_FULL_DEBUG variable and USE debug xfconf_use_debug() { if has debug ${IUSE}; then if use debug; then - if [[ -n $I_KNOW_WHAT_I_AM_DOING ]]; then + if [[ -n $XFCONF_FULL_DEBUG ]]; then echo "--enable-debug=full" else echo "--enable-debug" fi else - if [[ -n $I_KNOW_WHAT_I_AM_DOING ]]; then + if [[ -n $XFCONF_FULL_DEBUG ]]; then echo "--disable-debug" fi fi