summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2016-07-07 11:39:03 +0300
committerTimo Teräs <timo.teras@iki.fi>2016-07-07 12:04:06 +0300
commit97d924dfed7284b103f588f009d63ec5891ba347 (patch)
treeba560121f9f169c1cf10914ee09f7846d58bcbea /abuild.in
parent670fc1ae14eb4517cb971806a9608b22ef28ab39 (diff)
downloadabuild-97d924dfed7284b103f588f009d63ec5891ba347.tar.bz2
abuild-97d924dfed7284b103f588f009d63ec5891ba347.tar.xz
abuild: support arch="all !armhf"
this allows blacklisting architectures instead of just whitelisting them. useful when more architectures comeabout.
Diffstat (limited to 'abuild.in')
-rw-r--r--abuild.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index 72f8978..49e2630 100644
--- a/abuild.in
+++ b/abuild.in
@@ -1607,7 +1607,16 @@ srcpkg() {
# return true if arch is supported or noarch
check_arch() {
- list_has $CARCH $arch || [ "$arch" = "noarch" ] || [ "$arch" = "all" ]
+ local ret=1
+ local i
+ for i in $arch; do
+ case $i in
+ all | noarch) ret=0 ;;
+ "$CARCH") ret=0 ;;
+ "!$CARCH") return 1 ;;
+ esac
+ done
+ return $ret
}
# return true if libc is not masked in options