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 | 334fb19237c7831f3d0d2e5fd1f6d362a0cab542 (patch) | |
tree | 75138631ed8b40b1b55391ec99ea2a749d5261bc /eclass/gnome2.eclass | |
parent | new eclassed version (diff) | |
download | historical-334fb19237c7831f3d0d2e5fd1f6d362a0cab542.tar.gz historical-334fb19237c7831f3d0d2e5fd1f6d362a0cab542.tar.bz2 historical-334fb19237c7831f3d0d2e5fd1f6d362a0cab542.zip |
didn't i commit this? removes the bad flags from CFLAGS
Diffstat (limited to 'eclass/gnome2.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" |