diff options
author | Daniel Goller <morfic@gentoo.org> | 2006-02-10 03:56:43 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2006-02-10 03:56:43 +0000 |
commit | bce4fa962fc007c4d5ee6cec3e921a4d31d32bfb (patch) | |
tree | 53688af0471002b4d1fec051d15ddd971010fb52 /games-emulation | |
parent | Added USE=ident support, fixed DEPEND's, bug #119290 (diff) | |
download | gentoo-2-bce4fa962fc007c4d5ee6cec3e921a4d31d32bfb.tar.gz gentoo-2-bce4fa962fc007c4d5ee6cec3e921a4d31d32bfb.tar.bz2 gentoo-2-bce4fa962fc007c4d5ee6cec3e921a4d31d32bfb.zip |
Disallowing -ftracer to avoid bug#122192, thanks to Markus Gothe for reporting
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mupen64-glide64/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/games-emulation/mupen64-glide64/ChangeLog b/games-emulation/mupen64-glide64/ChangeLog index 5e7b8280e638..75efd1023bde 100644 --- a/games-emulation/mupen64-glide64/ChangeLog +++ b/games-emulation/mupen64-glide64/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/mupen64-glide64 -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/ChangeLog,v 1.7 2005/09/20 15:22:53 mr_bones_ Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/ChangeLog,v 1.8 2006/02/10 03:56:43 morfic Exp $ + + 10 Feb 2006; Daniel Goller <morfic@gentoo.org> mupen64-glide64-0.7.ebuild: + Disallowing -ftracer to avoid bug#122192, thanks Markus Gothe for reporting 20 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> mupen64-glide64-0.7.ebuild: diff --git a/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild b/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild index 0e007b3fa067..5969d016257b 100644 --- a/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild +++ b/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild,v 1.7 2005/09/20 15:22:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64-glide64/mupen64-glide64-0.7.ebuild,v 1.8 2006/02/10 03:56:43 morfic Exp $ inherit flag-o-matic eutils games @@ -33,6 +33,8 @@ src_unpack() { # gcc 3.4 at least has a problem with -O3 and inline asm replace-flags -O3 -O2 + # -ftracer is causing bug#122192 + filter-flags -ftracer sed -i \ -e "s:CFLAGS.*=\(.*\):CFLAGS=\1 ${CFLAGS}:" \ Makefile \ |