diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-07-13 21:12:54 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-07-13 21:12:54 +0000 |
commit | 30629c5552b0bc6770859ba0d837fe405dabb06c (patch) | |
tree | 54b18b4e97383d3c34bb4db9f361ff47783bea54 /app-emulation/spim | |
parent | Stable on sparc wrt #95199 (diff) | |
download | gentoo-2-30629c5552b0bc6770859ba0d837fe405dabb06c.tar.gz gentoo-2-30629c5552b0bc6770859ba0d837fe405dabb06c.tar.bz2 gentoo-2-30629c5552b0bc6770859ba0d837fe405dabb06c.zip |
fix bug 97217 and 90473 by removing -D__i386__ from the Makefile
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-emulation/spim')
-rw-r--r-- | app-emulation/spim/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/spim/spim-6.5-r1.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index 0b8d9e06425a..a09352ec61b5 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/spim # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.21 2005/04/24 11:14:15 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.22 2005/07/13 21:12:54 blubb Exp $ + + 13 Jul 2005; Simon Stelling <blubb@gentoo.org> spim-6.5-r1.ebuild: + fix bug 97217 and 90473 by removing -D__i386__ from the Makefile 24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> spim-7.0.ebuild: Stable on ppc. diff --git a/app-emulation/spim/spim-6.5-r1.ebuild b/app-emulation/spim/spim-6.5-r1.ebuild index 61c29e1d7337..6dfa1fd38283 100644 --- a/app-emulation/spim/spim-6.5-r1.ebuild +++ b/app-emulation/spim/spim-6.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-6.5-r1.ebuild,v 1.4 2005/02/12 18:35:42 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-6.5-r1.ebuild,v 1.5 2005/07/13 21:12:54 blubb Exp $ inherit eutils @@ -35,7 +35,8 @@ src_compile() { -e 's/@make/@$(MAKE)/' \ -e "s:\(BIN_DIR = \).*$:\1/usr/bin:" \ -e "s:\(MAN_DIR = \).*$:\1/usr/share/bin:" \ - -e "s:\(TRAP_DIR = \).*$:\1/usr/sbin:" Makefile \ + -e "s:\(TRAP_DIR = \).*$:\1/usr/sbin:" \ + -e "s:-D__i386__::" Makefile \ || die "sed Makefile failed" emake spim || die "make spim failed" |