diff options
-rw-r--r-- | www-client/arora/ChangeLog | 5 | ||||
-rw-r--r-- | www-client/arora/arora-0.7.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/www-client/arora/ChangeLog b/www-client/arora/ChangeLog index 844846b4f91c..a23a45887ccc 100644 --- a/www-client/arora/ChangeLog +++ b/www-client/arora/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-client/arora # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.15 2009/05/25 19:07:04 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.16 2009/05/25 22:43:03 yngwin Exp $ + + 25 May 2009; Ben de Groot <yngwin@gentoo.org> arora-0.7.0.ebuild: + Ensure compilation by enforcing make -j1, fixes bug 271240 *arora-0.7.0 (25 May 2009) diff --git a/www-client/arora/arora-0.7.0.ebuild b/www-client/arora/arora-0.7.0.ebuild index 926cfcd92f30..a08760069bb1 100644 --- a/www-client/arora/arora-0.7.0.ebuild +++ b/www-client/arora/arora-0.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.7.0.ebuild,v 1.1 2009/05/25 19:07:04 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.7.0.ebuild,v 1.2 2009/05/25 22:43:03 yngwin Exp $ EAPI=2 inherit eutils qt4 @@ -56,7 +56,7 @@ src_configure() { } src_compile() { - emake || die "make failed" + emake -j1 || die "make failed" # don't pre-strip sed -i "/strip/d" src/Makefile || die 'sed failed' |