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

Sébastien Luttringer seblu at nymeria.archlinux.org
Mon Jun 10 15:16:05 UTC 2013


    Date: Monday, June 10, 2013 @ 17:16:04
  Author: seblu
Revision: 92649

upgpkg: vlan 1.9-3

- fix bad elf architecture on x68_64 due to a Makefile race condition on last build.

Modified:
  vlan/trunk/PKGBUILD

----------+
 PKGBUILD |    9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2013-06-10 15:12:37 UTC (rev 92648)
+++ PKGBUILD	2013-06-10 15:16:04 UTC (rev 92649)
@@ -4,7 +4,7 @@
 
 pkgname=vlan
 pkgver=1.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Virtual LAN configuration utility'
 arch=('i686' 'x86_64')
 url='http://www.candelatech.com/~greear/vlan.html'
@@ -14,7 +14,12 @@
 
 build() {
   cd $pkgname
-  make clean all
+  # don't call clean and all on the same line with -jn (with n > 0)
+  # there is a race condition, both target are launched at the same time
+  # and as upstream provide target nothing is built.
+  # don't use !makeflags in PKGBUILD options to not penalize building
+  make clean
+  make all
 }
 
 package() {




More information about the arch-commits mailing list