ports/core (3.1): vim: prevent parallel make jobs for the install target
commit 8632a88495e670b70ad866aadd154aa3ef57d77f Author: Juergen Daubert <jue@jue.li> Date: Tue Dec 30 13:58:55 2014 +0100 vim: prevent parallel make jobs for the install target diff --git a/vim/Pkgfile b/vim/Pkgfile index 929a28f..45309dc 100644 --- a/vim/Pkgfile +++ b/vim/Pkgfile @@ -21,7 +21,7 @@ build () { --disable-nls make VIMRTDIR= - make VIMRTDIR= DESTDIR=$PKG install + make -j1 VIMRTDIR= DESTDIR=$PKG install mv $PKG/usr/share/vim/vimrc_example.vim $PKG/usr/share/vim/vimrc rm -r $PKG/usr/{man/man?/vimtutor*,share/vim/{tutor,macros},bin/vimtutor} @@ -46,5 +46,5 @@ build () { --with-features=tiny make VIMRTDIR= - make VIMRTDIR= DESTDIR=$PKG installvimbin + make -j1 VIMRTDIR= DESTDIR=$PKG installvimbin }
participants (1)
-
crux@crux.nu