diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-09-05 09:25:08 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-09-05 09:25:08 +0000 |
commit | 2446c7b79d2ba5854a2606250d0fc1ac9328f2fb (patch) | |
tree | fa3ed04dd223e3cb2929dfe5415b8700b2e346cb /eclass | |
parent | Version bump for Rails 2.3.9 (diff) | |
download | historical-2446c7b79d2ba5854a2606250d0fc1ac9328f2fb.tar.gz historical-2446c7b79d2ba5854a2606250d0fc1ac9328f2fb.tar.bz2 historical-2446c7b79d2ba5854a2606250d0fc1ac9328f2fb.zip |
Do not strip debug QT CFLAGS per bug #329533
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 b32b181c131d..bd2029e8d2d7 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.82 2010/08/14 18:09:10 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.83 2010/09/05 09:25:08 hwoarang Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -289,7 +289,7 @@ qt4-build_src_prepare() { sed -i -e '/^QMAKE_\(LIB\|INC\)DIR\(_X11\|_OPENGL\|\)\t/s/=.*$/=/' \ mkspecs/$(qt_mkspecs_dir)/qmake.conf || die # strip predefined CFLAGS from qmake ( bug #312689 ) - sed -i '/^QMAKE_CFLAGS_\(RELEASE\|DEBUG\)/s:+=.*:+=:' mkspecs/common/g++.conf + sed -i '/^QMAKE_CFLAGS_RELEASE/s:+=.*:+=:' mkspecs/common/g++.conf base_src_prepare } |