diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-28 06:47:45 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-28 06:47:45 +0000 |
commit | 5015b7a1126ff72c7a9058407770bd31d63db21a (patch) | |
tree | c5ec181622e39d09c496a207a14edeb74decda41 /eclass/vim.eclass | |
parent | Make ios USE description understandable without using google (diff) | |
download | gentoo-2-5015b7a1126ff72c7a9058407770bd31d63db21a.tar.gz gentoo-2-5015b7a1126ff72c7a9058407770bd31d63db21a.tar.bz2 gentoo-2-5015b7a1126ff72c7a9058407770bd31d63db21a.zip |
QA (partial): use emake -j1 rather than make -j1.
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index b64d55019de7..d0a4f2855e38 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -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/eclass/vim.eclass,v 1.195 2011/03/24 17:43:29 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.196 2011/03/28 06:47:45 flameeyes Exp $ # Authors: # Jim Ramsay <i.am@gentoo.org> @@ -382,7 +382,7 @@ vim_src_configure() { # 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 -j1 -C src autoconf || die "make autoconf failed" + emake -j1 -C src autoconf || die "make autoconf failed" eend $? # This should fix a sandbox violation (see bug 24447). The hvc @@ -501,7 +501,7 @@ vim_src_compile() { has src_configure ${TO_EXPORT} || vim_src_configure # The following allows emake to be used - make -j1 -C src auto/osdef.h objects || die "make failed" + emake -j1 -C src auto/osdef.h objects || die "make failed" if [[ ${MY_PN} == "vim-core" ]] ; then emake tools || die "emake tools failed" |