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 # Generated by mksrcinfo v8
# Sun Jan 31 23:28:00 UTC 2016 # Sun Jan 31 23:50:00 UTC 2016
pkgbase = florence pkgbase = florence
pkgdesc = A configurable on-screen virtual keyboard pkgdesc = A configurable on-screen virtual keyboard
pkgver = 0.6.3 pkgver = 0.6.3

View file

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