diff options
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |