PKGBUILD: makefile does not support multithread

This commit is contained in:
Tomasz Przybył 2017-01-04 18:43:54 +01:00 committed by GitHub
parent c307f079a8
commit 8141201e1d
1 changed files with 2 additions and 2 deletions

View File

@ -40,10 +40,10 @@ build() {
cd I-Nex cd I-Nex
./configure --prefix=/usr ./configure --prefix=/usr
cd .. cd ..
make make -j1
} }
package() { package() {
cd $pkgname cd $pkgname
make install DESTDIR="$pkgdir" make -j1 install DESTDIR="$pkgdir"
} }