diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-04-06 07:52:51 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-04-06 07:52:51 +0200 |
commit | 8fdeea307261531ec1ffafef806e16516f10764e (patch) | |
tree | e755ab42259b939c9b09ff8a44440d42f0425bf6 | |
parent | c6c2babeba94d2b11c98481d09ff4e9f403761dd (diff) |
Workaround parallel install bug in uim.
-rw-r--r-- | extra/uim/PKGBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/uim/PKGBUILD b/extra/uim/PKGBUILD index 4cdb5d305..eb16cf181 100644 --- a/extra/uim/PKGBUILD +++ b/extra/uim/PKGBUILD @@ -36,7 +36,7 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make -j1 DESTDIR="${pkgdir}" install rm "${pkgdir}"/usr/lib/libgcroots.a install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" } |