diff options
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -309,8 +309,8 @@ uri_fetch() { CLEANUP_FILES="$CLEANUP_FILES $lockfile" ( - flock -n -x 200 || msg "Waiting for ${lockfile##*/}..." - flock -x 200 + flock -n -x 9 || msg "Waiting for ${lockfile##*/}..." + flock -x 9 [ -f "$SRCDEST/$d" ] && exit 0 # use exit since its a subshell @@ -332,7 +332,7 @@ uri_fetch() { $fetcher $opts -o "$SRCDEST/$d.part" "$uri" \ && mv "$SRCDEST/$d.part" "$SRCDEST/$d" - ) 200>$lockfile + ) 9>$lockfile local rc=$? rm -f "$lockfile" |