Add jobs option to make
Added '-j1' option since several users reported build errors with parallel make jobs
This commit is contained in:
parent
93e68b8b58
commit
0d6b273790
2 changed files with 3 additions and 3 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -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
|
||||
|
|
4
PKGBUILD
4
PKGBUILD
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue