diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-08-13 16:36:10 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-08-13 16:36:10 +0000 |
commit | 023bf8005c20d8ecf37a300ce776908fcdc2ad65 (patch) | |
tree | 53cbf3a0dc1c72cd2b60803a96f2e786a1364ace /eclass | |
parent | Apply separate patches gentoo patches for the two ebuilds. Thanks to Dane Smi... (diff) | |
download | historical-023bf8005c20d8ecf37a300ce776908fcdc2ad65.tar.gz historical-023bf8005c20d8ecf37a300ce776908fcdc2ad65.tar.bz2 historical-023bf8005c20d8ecf37a300ce776908fcdc2ad65.zip |
Don't spit out warning with -g0. Patch from Bartosz Brachaczek <b.brachaczek@gmail.com>. Bug #332537
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 7ddb3e06e400..996ae66bc112 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.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/qt4-build.eclass,v 1.79 2010/08/08 11:34:20 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.80 2010/08/13 16:36:10 hwoarang Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -83,7 +83,7 @@ qt4-build_pkg_setup() { if [[ "${PN}" == "qt-webkit" ]]; then eshopts_push -s extglob - if is-flagq '-g?(gdb)?([0-9])'; then + if is-flagq '-g?(gdb)?([1-9])'; then echo ewarn "You have enabled debug info (probably have -g or -ggdb in your \$C{,XX}FLAGS)." ewarn "You may experience really long compilation times and/or increased memory usage." |