diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-06-06 14:38:46 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-06-06 14:38:46 +0000 |
commit | 50bc48b4ef9f6dbe2a513696dff05e3dabd39b93 (patch) | |
tree | d470d5051ce0268300dbb321a8d25396b4ff24e9 /eclass | |
parent | Fix compilation without LDAP (bug #370233) and add missing ldap USE flag (diff) | |
download | historical-50bc48b4ef9f6dbe2a513696dff05e3dabd39b93.tar.gz historical-50bc48b4ef9f6dbe2a513696dff05e3dabd39b93.tar.bz2 historical-50bc48b4ef9f6dbe2a513696dff05e3dabd39b93.zip |
Warn when using xfconf_use_debug without having debug in IUSE
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfconf.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/xfconf.eclass b/eclass/xfconf.eclass index 79b6a8ad3cd4..c074a6db23f5 100644 --- a/eclass/xfconf.eclass +++ b/eclass/xfconf.eclass @@ -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.34 2011/05/19 22:39:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.35 2011/06/06 14:38:46 angelos Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -69,6 +69,8 @@ xfconf_use_debug() { else echo "--enable-debug=minimum" fi + else + ewarn "${FUNCNAME} called without debug in IUSE" fi } |