diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-07-30 21:14:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-07-30 21:14:33 +0000 |
commit | f6b280bdd9ce1dd628cdbd3667fc4438179a12f0 (patch) | |
tree | 4431eed82cd741808eb71b240329e23dd6232ab9 /games-emulation/generator | |
parent | old (diff) | |
download | gentoo-2-f6b280bdd9ce1dd628cdbd3667fc4438179a12f0.tar.gz gentoo-2-f6b280bdd9ce1dd628cdbd3667fc4438179a12f0.tar.bz2 gentoo-2-f6b280bdd9ce1dd628cdbd3667fc4438179a12f0.zip |
make it yasm-syntax-friendly
(Portage version: 2.1.2.9)
Diffstat (limited to 'games-emulation/generator')
-rw-r--r-- | games-emulation/generator/generator-0.35_p3.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/games-emulation/generator/generator-0.35_p3.ebuild b/games-emulation/generator/generator-0.35_p3.ebuild index 112471985877..b8492d9d18b1 100644 --- a/games-emulation/generator/generator-0.35_p3.ebuild +++ b/games-emulation/generator/generator-0.35_p3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/generator/generator-0.35_p3.ebuild,v 1.1 2007/07/25 17:01:36 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/generator/generator-0.35_p3.ebuild,v 1.2 2007/07/30 21:14:33 mr_bones_ Exp $ inherit autotools eutils toolchain-funcs games @@ -31,6 +31,11 @@ src_unpack() { epatch \ "${FILESDIR}"/${P}-execstacks.patch \ "${FILESDIR}"/${P}-configure.patch + # make it yasm-syntax-friendly + sed -i \ + -e 's/-praze/-Praze/' \ + raze/Makefile.am \ + || die "sed failed" eautoreconf } |