abuild: -f will build even if arch is missing

This commit is contained in:
Natanael Copa 2011-01-09 12:50:16 +00:00
parent 0db502b906
commit 37c29649f7
1 changed files with 3 additions and 1 deletions

View File

@ -1210,7 +1210,9 @@ uninstalldeps (){
}
all() {
check_arch || return 0
if ! [ -n "$force" ]; then
check_arch || return 0
fi
if up2date && [ -z "$force" ]; then
msg "Package is up to date"
else