diff options
Diffstat (limited to 'scripts/build/chroot_packageslists')
-rwxr-xr-x | scripts/build/chroot_packageslists | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/chroot_packageslists b/scripts/build/chroot_packageslists index 9c3ca7e..bd2ba24 100755 --- a/scripts/build/chroot_packageslists +++ b/scripts/build/chroot_packageslists @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh +. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh # Setting static variables DESCRIPTION="$(Echo 'queue install of packages lists into chroot')" @@ -38,10 +38,10 @@ Check_lockfile .lock # Creating lock file Create_lockfile .lock -if [ -n "${LH_PACKAGES_LISTS}" ] && [ "${LH_PACKAGES_LISTS}" != "none" ] +if [ -n "${LB_PACKAGES_LISTS}" ] && [ "${LB_PACKAGES_LISTS}" != "none" ] then - for LIST in ${LH_PACKAGES_LISTS} + for LIST in ${LB_PACKAGES_LISTS} do # Generating package list Expand_packagelist "${LIST}" >> chroot/root/chroot_packages |