summaryrefslogtreecommitdiff
path: root/community/vlan
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-06-11 00:05:27 -0700
committerroot <root@rshg054.dnsready.net>2013-06-11 00:05:27 -0700
commitbf794523287bafc14671f83b08f7b22bceadc4bc (patch)
tree05c7098cb5eb0c4195d7c2eb735379fb27a974ab /community/vlan
parent3f6e6048fea3b61c4d0b2c1e7385bc76882007a4 (diff)
Tue Jun 11 00:05:26 PDT 2013
Diffstat (limited to 'community/vlan')
-rw-r--r--community/vlan/PKGBUILD11
1 files changed, 8 insertions, 3 deletions
diff --git a/community/vlan/PKGBUILD b/community/vlan/PKGBUILD
index ca8374104..01915a0b0 100644
--- a/community/vlan/PKGBUILD
+++ b/community/vlan/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 90479 2013-05-12 21:50:43Z seblu $
+# $Id: PKGBUILD 92650 2013-06-10 15:16:14Z seblu $
# Maintainer: Sébastien Luttringer
# Contributor: Judd Vinet <jvinet@zeroflux.org>
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 @@ md5sums=('5f0c6060b33956fb16e11a15467dd394')
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() {