diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-02-15 14:41:19 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-02-15 14:41:19 +0000 |
commit | 2027975293f27621927207a543a3aba6cfed402d (patch) | |
tree | 02cbc9da5bf2cef96abaf032d7a1987e23ec3988 /app-editors/e3 | |
parent | Spelling. (diff) | |
download | gentoo-2-2027975293f27621927207a543a3aba6cfed402d.tar.gz gentoo-2-2027975293f27621927207a543a3aba6cfed402d.tar.bz2 gentoo-2-2027975293f27621927207a543a3aba6cfed402d.zip |
Fix build failure for 32 bit version.
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/e3')
-rw-r--r-- | app-editors/e3/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/e3/e3-2.8.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/app-editors/e3/ChangeLog b/app-editors/e3/ChangeLog index 8c405afa04b2..eaa308aca526 100644 --- a/app-editors/e3/ChangeLog +++ b/app-editors/e3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/e3 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.33 2011/02/12 16:28:22 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.34 2011/02/15 14:41:19 ulm Exp $ + + 15 Feb 2011; Ulrich Mueller <ulm@gentoo.org> e3-2.8.ebuild: + Fix build failure for 32 bit version. Thanks to Stelian Ionescu. *e3-2.8 (12 Feb 2011) diff --git a/app-editors/e3/e3-2.8.ebuild b/app-editors/e3/e3-2.8.ebuild index cbb7a7e93326..a0029db36193 100644 --- a/app-editors/e3/e3-2.8.ebuild +++ b/app-editors/e3/e3-2.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v 1.1 2011/02/12 16:28:22 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v 1.2 2011/02/15 14:41:19 ulm Exp $ EAPI=3 @@ -17,6 +17,10 @@ RESTRICT="strip" DEPEND=">=dev-lang/nasm-2.09.04" RDEPEND="" +src_prepare() { + sed -i 's/-D$(EXMODE)//' Makefile || die +} + src_compile() { if use amd64; then emake 64 || die |