diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-20 10:38:30 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-20 10:38:30 +0100 |
commit | 761472d96b2dae8b255399fc237287a780e24c0f (patch) | |
tree | b76430d5c98bf2587333e02cb5bdec1cf3b529ca /abuild.in | |
parent | 01bab6e26d8c2da615cad18003d1ae31a4fb1672 (diff) | |
download | abuild-761472d96b2dae8b255399fc237287a780e24c0f.tar.gz abuild-761472d96b2dae8b255399fc237287a780e24c0f.tar.bz2 abuild-761472d96b2dae8b255399fc237287a780e24c0f.tar.xz abuild-761472d96b2dae8b255399fc237287a780e24c0f.zip |
abuild: busybox flock does not support -w
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -280,7 +280,7 @@ uri_fetch() { CLEANUP_FILES="$CLEANUP_FILES $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 |