diff options
author | Luis Medinas <metalgod@gentoo.org> | 2006-08-18 01:13:10 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2006-08-18 01:13:10 +0000 |
commit | 0c111069df971965cd4ab2d418b3cab401009bef (patch) | |
tree | 0a35df60d6bf76f871d96a1720a4ed93569794f9 /x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild | |
parent | Marking amd64 stable (diff) | |
download | historical-0c111069df971965cd4ab2d418b3cab401009bef.tar.gz historical-0c111069df971965cd4ab2d418b3cab401009bef.tar.bz2 historical-0c111069df971965cd4ab2d418b3cab401009bef.zip |
replace -Os and -O3 by -O2 CFLAGS.
Package-Manager: portage-2.1.1_pre5-r2
Diffstat (limited to 'x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild')
-rw-r--r-- | x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild b/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild index 8c46c6adf3a4..0a606c17090f 100644 --- a/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild +++ b/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild,v 1.9 2006/08/18 00:47:36 metalgod Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.92.0-r3.ebuild,v 1.10 2006/08/18 01:13:10 metalgod Exp $ inherit eutils gnustep-funcs flag-o-matic multilib @@ -34,7 +34,9 @@ fi src_unpack() { is-flag -fstack-protector && filter-flags -fstack-protector \ && ewarn "CFLAG -fstack-protector has been disabled, as it is known to cause bugs with WindowMaker (bug #78051)" && ebeep 2 - filter-flags -Os + replace-flags "-Os" "-O2" + replace-flags "-O3" "-O2" + unpack ${A} cd "${S}" epatch ${FILESDIR}/${PV/0.92/0.91}/singleclick-shadeormaxopts-0.9x.patch2 |