diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-02 16:02:32 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-02 16:02:32 +0000 |
commit | 6e1d21251080ae04498de17d950db3db83873bf6 (patch) | |
tree | 7a802b5eb5383d0274fe51c6358827db438a2045 /eclass | |
parent | new eclassed version (diff) | |
download | gentoo-2-6e1d21251080ae04498de17d950db3db83873bf6.tar.gz gentoo-2-6e1d21251080ae04498de17d950db3db83873bf6.tar.bz2 gentoo-2-6e1d21251080ae04498de17d950db3db83873bf6.zip |
didn't i commit this? removes the bad flags from CFLAGS
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 064db2b6c556..35f36b3fee40 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.4 2002/06/01 03:50:29 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.5 2002/06/02 16:02:32 spider Exp $ # Authors: # Bruce A. Locke <blocke@shivan.org> @@ -13,9 +13,11 @@ ECLASS="gnome2" # Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ DEBUG="yes" RESTRICT="nostrip" + +# Remove omit-frame-pointer as some useless folks define that all over the place. they should be shot with a 16 gauge slingshot at least :) # force debug information -CFLAGS="${CFLAGS} -g" -CXXFLAGS="${CXXFLAGS} -g" +export CFLAGS="${CFLAGS/-fomit-frame-pointer/} -g" +export CXXFLAGS="${CXXFLAGS/-fomit-frame-pointer/} -g" G2CONF="--enable-debug=yes" |