diff options
author | 2008-10-27 05:36:02 +0000 | |
---|---|---|
committer | 2008-10-27 05:36:02 +0000 | |
commit | 6c8536b5f32e7b614255e27dd1a9dcf327b0ea2a (patch) | |
tree | f1262896a1853a0c587e98c018ef5ba517daff94 /eclass | |
parent | Fixed encoding in ChangeLog (diff) | |
download | gentoo-2-6c8536b5f32e7b614255e27dd1a9dcf327b0ea2a.tar.gz gentoo-2-6c8536b5f32e7b614255e27dd1a9dcf327b0ea2a.tar.bz2 gentoo-2-6c8536b5f32e7b614255e27dd1a9dcf327b0ea2a.zip |
erm, previous commit wasnt ready, but should be ok with this fix
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index a67a348f22ba..b07a02e8e1f6 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.11 2008/10/27 05:06:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.12 2008/10/27 05:36:02 vapier Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -85,7 +85,7 @@ cmake-utils_has() { _use_me_now HAVE "$@" ; } cmake-utils_src_configure() { debug-print-function $FUNCNAME $* - if has debug ${IUSE//+} && use debug ; then + if ! has debug ${IUSE//+} || ! use debug ; then append-cppflags -DNDEBUG fi |