diff options
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -241,7 +241,9 @@ fetch() { # unpack the sources default_unpack() { local u - md5check || return 1 + if [ -z "$force" ]; then + md5check || return 1 + fi mkdir -p "$srcdir" for u in $source; do local s="$SRCDEST/${u##*/}" # $(basename $s) |