diff options
Diffstat (limited to 'helpers/binary')
-rwxr-xr-x | helpers/binary | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/binary b/helpers/binary index 9b15189..11a1781 100755 --- a/helpers/binary +++ b/helpers/binary @@ -29,7 +29,7 @@ Setup_cleanup # Preparing root filesystem lh binary_chroot ${*} -if [ "${LH_CHROOT_BUILD}" = "true" ] +if [ "${LH_BUILD_WITH_CHROOT}" = "true" ] then # Configuring chroot lh chroot_devpts install ${*} @@ -67,7 +67,7 @@ lh binary_local-includes ${*} lh binary_local-hooks ${*} lh binary_checksums ${*} -if [ "${LH_CHROOT_BUILD}" != "true" ] +if [ "${LH_BUILD_WITH_CHROOT}" != "true" ] then lh chroot_devpts install ${*} lh chroot_proc install ${*} @@ -82,7 +82,7 @@ lh binary_tar ${*} lh binary_usb ${*} lh binary_virtual-hdd ${*} -if [ "${LH_CHROOT_BUILD}" = "true" ] +if [ "${LH_BUILD_WITH_CHROOT}" = "true" ] then # Deconfiguring chroot rm -f .stage/chroot_sources |