chroot: do not umount unnecessarily in the build target.

--HG--
extra : convert_revision : bb005f7c4dae217282a231eea9f71869479b97d2
This commit is contained in:
Juan RP
2008-10-27 08:35:40 +01:00
parent cb98b31ee8
commit 40a6d63364
2 changed files with 9 additions and 4 deletions

View File

@@ -13,6 +13,10 @@ if [ $? -ne 0 ]; then
fi
if [ "$(id -u)" -ne 0 ]; then
if [ -z "$base_chroot" ]; then
echo "*** ERROR: this package must be built inside of the chroot ***"
exit 1
fi
echo "*** ERROR: you must be root to use this target ***"
exit 1
fi
@@ -82,7 +86,6 @@ configure_chroot_pkg()
rebuild_ldso_cache
env in_chroot=yes chroot $XBPS_MASTERDIR /xbps/xbps.sh configure $pkg
echo "==> Exiting from the chroot on $XBPS_MASTERDIR."
umount_chroot_fs
}
build_chroot_pkg()
@@ -94,7 +97,6 @@ build_chroot_pkg()
rebuild_ldso_cache
env in_chroot=yes chroot $XBPS_MASTERDIR /xbps/xbps.sh build $pkg
echo "==> Exiting from the chroot on $XBPS_MASTERDIR."
umount_chroot_fs
}
install_chroot_pkg()