makedeb


neovim-git 16b0d3ae2022.04.20-2


Vim-fork focused on extensibility and usability

Click here to go back to the commit logs for neovim-git.

Commit:


Hash: 31bb6d913656cc009a624edbd23d301c30b0a388

Message: minor fix

Diff


diff --git a/PKGBUILD b/PKGBUILD
index 0695c20..6d9399b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,6 +21,7 @@ conflicts=('neovim')
 # replaces=('neovim' 'vim')
 options=(!strip)
 #post_install=
+MAKEFLAGS="-j$(nproc)"
 
 pkgver() {
     cd "${srcdir}/${_pkgname}"
@@ -32,7 +33,7 @@ pkgver() {
 
 package() {
   cd ${srcdir}/${_pkgname}/
-  make -j4
+  make 
   make DESTDIR="${pkgdir}" install
   cd "${srcdir}/${_pkgname}"
   install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"