diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2006-03-13 03:04:37 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2006-03-13 03:04:37 +0000 |
commit | 0a3523a185becfbc9b30b79a95190046e722f9b3 (patch) | |
tree | 0b94fe038b147cb8965687cd643ffb70762ffb5c /Tools | |
parent | 7a39c45c24645cc1954455d1bf78b1db22a55581 (diff) |
Mount the md image async here too
Approved by: portmgr (implicit)
Notes
Notes:
svn path=/head/; revision=157076
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/claim-chroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/claim-chroot b/Tools/portbuild/scripts/claim-chroot index c04c3866d523..2aa7a70fd232 100755 --- a/Tools/portbuild/scripts/claim-chroot +++ b/Tools/portbuild/scripts/claim-chroot @@ -84,7 +84,7 @@ while [ ${found} != 1 ]; do mkdir ${chroot}/used/used touch ${chroot}/used/used/${pkgname} umount ${chroot}/used - mount /dev/${unit} ${chroot}/ + mount -o async /dev/${unit} ${chroot}/ else chrootnum=$(($chrootnum+1)) chroot=${chrootdir}/${chrootnum} |