[arch-commits] Commit in clawsker/trunk (PKGBUILD)

Christian Hesse eworm at archlinux.org
Mon Nov 14 18:46:15 UTC 2016


    Date: Monday, November 14, 2016 @ 18:46:14
  Author: eworm
Revision: 280731

add comment and todo about race condition

Modified:
  clawsker/trunk/PKGBUILD

----------+
 PKGBUILD |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-11-14 15:18:34 UTC (rev 280730)
+++ PKGBUILD	2016-11-14 18:46:14 UTC (rev 280731)
@@ -20,11 +20,12 @@
 build()
 {
   cd "$srcdir/$pkgname-$pkgver"
-  make
+  make PREFIX="/usr"
 }
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
-  mkdir -p "$pkgdir/"usr/share/icons/hicolor/{48x48,64x64,128x128}/apps/
-  make PREFIX="/usr" DESTDIR="$pkgdir" install
+  # race condition fixed upstream
+  # TODO: remove '-j1' for next release
+  make -j1 PREFIX="/usr" DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list