diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-07 17:56:12 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-12-07 17:56:12 +0000 |
commit | 43d88abd6fd464e8c71b49403686391dece5c06f (patch) | |
tree | 78c734d70074427378025069ea068946c399bcc7 /eclass/vim.eclass | |
parent | Try to avoid sandbox violations thanks to silly glib misfeature. Bug #114475 (diff) | |
download | gentoo-2-43d88abd6fd464e8c71b49403686391dece5c06f.tar.gz gentoo-2-43d88abd6fd464e8c71b49403686391dece5c06f.tar.bz2 gentoo-2-43d88abd6fd464e8c71b49403686391dece5c06f.zip |
Partially fix parallel make screwups
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 6dac368ac17e..dd57d58a3599 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.129 2005/12/07 02:01:23 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.130 2005/12/07 17:56:12 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -350,7 +350,7 @@ vim_src_compile() { # autoconf-2.13 needed for this package -- bug 35319 # except it seems we actually need 2.5 now -- bug 53777 WANT_AUTOCONF=2.5 \ - make -C src $confrule || die "make $confrule failed" + make -j1 -C src $confrule || die "make $confrule failed" eend $? # This should fix a sandbox violation (see bug 24447). The hvc |