diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-12-04 09:56:00 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-12-04 09:56:00 +0000 |
commit | 481b340a47e0733468d839100c3f4450cf48fa29 (patch) | |
tree | f789e6d6f1d294a4f695de614b554e1d54f48f0e /x11-libs | |
parent | move reload to extra_started_commands in 3.2 init script (diff) | |
download | gentoo-2-481b340a47e0733468d839100c3f4450cf48fa29.tar.gz gentoo-2-481b340a47e0733468d839100c3f4450cf48fa29.tar.bz2 gentoo-2-481b340a47e0733468d839100c3f4450cf48fa29.zip |
drop -g from CFLAGS when debug is enabled. Bug #382265
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libfm/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/libfm/libfm-0.1.17.ebuild | 4 | ||||
-rw-r--r-- | x11-libs/libfm/libfm-9999.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/x11-libs/libfm/ChangeLog b/x11-libs/libfm/ChangeLog index d6701f66ac53..5bf06dc06335 100644 --- a/x11-libs/libfm/ChangeLog +++ b/x11-libs/libfm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libfm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.54 2011/10/25 17:57:09 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.55 2011/12/04 09:56:00 hwoarang Exp $ + + 04 Dec 2011; Markos Chandras <hwoarang@gentoo.org> libfm-9999.ebuild, + libfm-0.1.17.ebuild: + drop -g from CFLAGS when debug is enabled. Bug #382265 *libfm-0.1.17 (25 Oct 2011) diff --git a/x11-libs/libfm/libfm-0.1.17.ebuild b/x11-libs/libfm/libfm-0.1.17.ebuild index e538d7a4fb3d..30399a97c0fb 100644 --- a/x11-libs/libfm/libfm-0.1.17.ebuild +++ b/x11-libs/libfm/libfm-0.1.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-0.1.17.ebuild,v 1.1 2011/10/25 17:57:09 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-0.1.17.ebuild,v 1.2 2011/12/04 09:56:00 hwoarang Exp $ EAPI=4 @@ -30,7 +30,7 @@ DEPEND="${COMMON_DEPEND} src_prepare() { sed -ie '/SUBDIRS=/s#docs##' "${S}"/Makefile.am || die "sed failed" - sed -i -e '/^[[:space:]]*docs/d' -e "s:-O0::" \ + sed -i -e '/^[[:space:]]*docs/d' -e "s:-O0::" -e "/-DG_ENABLE_DEBUG/s: -g::" \ configure.ac || die "sed failed" eautoreconf } diff --git a/x11-libs/libfm/libfm-9999.ebuild b/x11-libs/libfm/libfm-9999.ebuild index 4fadc9f9ccf2..92b27369daa0 100644 --- a/x11-libs/libfm/libfm-9999.ebuild +++ b/x11-libs/libfm/libfm-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.18 2011/09/10 11:43:40 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.19 2011/12/04 09:56:00 hwoarang Exp $ EAPI=3 @@ -45,7 +45,7 @@ src_prepare() { progress;do echo "data/ui/"${trans}.ui >> po/POTFILES.in done - sed -i -e "s:-O0::" "${S}"/configure.ac || die + sed -i -e "s:-O0::" -e "/-DG_ENABLE_DEBUG/s: -g::" "${S}"/configure.ac || die eautoreconf } |