diff options
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vile/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/vile/vile-9.6.ebuild | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-editors/vile/ChangeLog b/app-editors/vile/ChangeLog index 1355fa82ad35..615192e0f779 100644 --- a/app-editors/vile/ChangeLog +++ b/app-editors/vile/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/vile -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.32 2008/03/08 14:44:55 nelchael Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.33 2009/07/20 10:53:21 flameeyes Exp $ + + 20 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org> vile-9.6.ebuild: + Use emake -j1 for install. *vile-9.6 (08 Mar 2008) diff --git a/app-editors/vile/vile-9.6.ebuild b/app-editors/vile/vile-9.6.ebuild index c38c1d8fbcb0..4f9fce9f9b96 100644 --- a/app-editors/vile/vile-9.6.ebuild +++ b/app-editors/vile/vile-9.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.6.ebuild,v 1.1 2008/03/08 14:44:55 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.6.ebuild,v 1.2 2009/07/20 10:53:21 flameeyes Exp $ inherit eutils @@ -28,7 +28,8 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "install failed" + # bug #278415 + emake -j1 DESTDIR="${D}" install || die "install failed" dodoc CHANGES* README* doc/* } |