Add jobs option to make

Added '-j1' option since several users reported build errors with parallel make jobs
This commit is contained in:
Manuel Hüsers 2016-02-01 00:53:01 +01:00
parent 93e68b8b58
commit 0d6b273790
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
# Sun Jan 31 23:28:00 UTC 2016
# Sun Jan 31 23:50:00 UTC 2016
pkgbase = florence
pkgdesc = A configurable on-screen virtual keyboard
pkgver = 0.6.3

View File

@ -26,11 +26,11 @@ build() {
--with-xtst \
--with-docs \
--disable-static
make
make -j1
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
make -j1 DESTDIR="${pkgdir}" install
}