diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-02 19:08:41 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-02 19:08:41 -0500 |
commit | 294543f415c50b7fbcee7e9794cda1ba80bf7fd8 (patch) | |
tree | ad7ba0dacc3d48c5b6834b1588da05ecacefc370 /makechrootpkg.in | |
parent | 8c0ab05d635c66feb07ec102515f02d13f9af2d6 (diff) | |
download | devtools32-294543f415c50b7fbcee7e9794cda1ba80bf7fd8.tar.xz |
fix a bug in makechrootpkg.in
Diffstat (limited to 'makechrootpkg.in')
-rw-r--r-- | makechrootpkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in index 05286c6..244700c 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -119,7 +119,7 @@ lock_open_write 9 "$copydir.lock" "Locking chroot copy '$copy'" if [[ ! -d $copydir ]] || $clean_first; then # Get a read lock on the root chroot to make # sure we don't clone a half-updated chroot - lock_open_read 8 "$chrootdir/root.lock" "Locking clean chroot" + lock_open_read 8 "$chrootdir/root" "Locking clean chroot" stat_busy 'Creating clean working copy' use_rsync=false |