diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-23 06:39:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-23 06:39:04 +0000 |
commit | 785e357577ddf8becb5a53d7238c13fdc9691f6c (patch) | |
tree | 9f65e693ff384103c0e1ee5ef2665eed4f099856 /games-emulation/xmame | |
parent | added florindo.tgz theme (diff) | |
download | historical-785e357577ddf8becb5a53d7238c13fdc9691f6c.tar.gz historical-785e357577ddf8becb5a53d7238c13fdc9691f6c.tar.bz2 historical-785e357577ddf8becb5a53d7238c13fdc9691f6c.zip |
hppa needs -ffunction-sections
Diffstat (limited to 'games-emulation/xmame')
-rw-r--r-- | games-emulation/xmame/xmame-0.79.1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games-emulation/xmame/xmame-0.79.1.ebuild b/games-emulation/xmame/xmame-0.79.1.ebuild index 4a615fe897a0..aad60a927037 100644 --- a/games-emulation/xmame/xmame-0.79.1.ebuild +++ b/games-emulation/xmame/xmame-0.79.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.79.1.ebuild,v 1.3 2004/02/23 03:52:22 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.79.1.ebuild,v 1.4 2004/02/23 06:39:04 vapier Exp $ inherit games flag-o-matic gcc eutils @@ -150,7 +150,10 @@ src_unpack() { ;; ppc) append-flags -Wno-unused -funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math -fsigned-char ;; + hppa) append-flags -ffunction-sections + ;; esac + sed -i \ -e "/^PREFIX/s:=.*:=/usr:" \ -e "/^BINDIR/s:=.*:=${GAMES_BINDIR}:" \ |