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 | 7874cab8afbde2293f153aac204401ca472d6696 (patch) | |
tree | a5c09a39668ecef64f88bb01c84a46d56669a2b1 /eclass/xfconf.eclass | |
parent | Fix compilation without LDAP (bug #370233) and add missing ldap USE flag (diff) | |
download | gentoo-2-7874cab8afbde2293f153aac204401ca472d6696.tar.gz gentoo-2-7874cab8afbde2293f153aac204401ca472d6696.tar.bz2 gentoo-2-7874cab8afbde2293f153aac204401ca472d6696.zip |
Warn when using xfconf_use_debug without having debug in IUSE
Diffstat (limited to 'eclass/xfconf.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 } |