diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-05-28 05:08:12 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-05-28 05:08:12 +0000 |
commit | 322e60b95364cacbcaca52bd1141024992ac0b40 (patch) | |
tree | fd71aadc7a64862b3c74799f5b0665ab889de770 /games-fps | |
parent | Stable for HPPA (bug #264173). (diff) | |
download | gentoo-2-322e60b95364cacbcaca52bd1141024992ac0b40.tar.gz gentoo-2-322e60b95364cacbcaca52bd1141024992ac0b40.tar.bz2 gentoo-2-322e60b95364cacbcaca52bd1141024992ac0b40.zip |
needs -fno-strict-aliasing for proper function - reported by Cesar Garcia (bug #268851)
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/openarena/ChangeLog | 7 | ||||
-rw-r--r-- | games-fps/openarena/openarena-0.8.1.ebuild | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/games-fps/openarena/ChangeLog b/games-fps/openarena/ChangeLog index 9c54f7bc985c..e4f31cee56cf 100644 --- a/games-fps/openarena/ChangeLog +++ b/games-fps/openarena/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-fps/openarena # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.6 2009/01/07 22:05:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.7 2009/05/28 05:08:12 mr_bones_ Exp $ + + 28 May 2009; Michael Sterrett <mr_bones_@gentoo.org> + openarena-0.8.1.ebuild: + needs -fno-strict-aliasing for proper function - reported by Cesar Garcia (bug + #268851) *openarena-0.8.1 (07 Jan 2009) diff --git a/games-fps/openarena/openarena-0.8.1.ebuild b/games-fps/openarena/openarena-0.8.1.ebuild index c2cb0373ddb5..4da1c153005d 100644 --- a/games-fps/openarena/openarena-0.8.1.ebuild +++ b/games-fps/openarena/openarena-0.8.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.1.ebuild,v 1.1 2009/01/07 22:05:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.1.ebuild,v 1.2 2009/05/28 05:08:12 mr_bones_ Exp $ EAPI=1 -inherit versionator games +inherit flag-o-matic versionator games MY_PV=$(delete_all_version_separators) @@ -37,6 +37,7 @@ src_unpack() { unpack ${A} cd "${WORKDIR}" epatch "${FILESDIR}"/${P}-makefile.patch + append-cflags -fno-strict-aliasing # bug #268851 sed -i \ -e "s:%CFLAGS%:${CFLAGS}:g" \ "${MY_S}"/Makefile || die "seding cflags failed" |