Skip to content
Snippets Groups Projects
Commit 761472d9 authored by Natanael Copa's avatar Natanael Copa
Browse files

abuild: busybox flock does not support -w

parent 01bab6e2
No related branches found
No related tags found
No related merge requests found
...@@ -280,7 +280,7 @@ uri_fetch() { ...@@ -280,7 +280,7 @@ uri_fetch() {
CLEANUP_FILES="$CLEANUP_FILES $lockfile" CLEANUP_FILES="$CLEANUP_FILES $lockfile"
( (
flock -n -x 200 || msg "Waiting for ${lockfile##*/}..." flock -n -x 200 || msg "Waiting for ${lockfile##*/}..."
flock -w 600 -x 200 flock -x 200
[ -f "$SRCDEST/$d" ] && exit 0 # use exit since its a subshell [ -f "$SRCDEST/$d" ] && exit 0 # use exit since its a subshell
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment