diff options
Diffstat (limited to 'scripts/build/lb_chroot_sources')
-rwxr-xr-x | scripts/build/lb_chroot_sources | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/build/lb_chroot_sources b/scripts/build/lb_chroot_sources index 75e73333b..352f3e9f9 100755 --- a/scripts/build/lb_chroot_sources +++ b/scripts/build/lb_chroot_sources @@ -217,10 +217,10 @@ EOF done fi - # Configure third-party repositories - if [ -n "${LB_REPOSITORIES}" ] + # Configure third-party archives + if [ -n "${LB_ARCHIVES}" ] then - for REPOSITORY in ${LB_REPOSITORIES} + for REPOSITORY in ${LB_ARCHIVES} do # ubuntu workaround to allow using live.debian.net if [ "${LB_MODE}" = "ubuntu" ] && [ "${REPOSITORY}" = "live.debian.net" ] @@ -230,9 +230,9 @@ EOF _DISTRIBUTION="${LB_PARENT_DISTRIBUTION}" fi - for PLACE in config/repositories "${LB_BASE}/repositories" + for PLACE in config/archives "${LB_BASE}/archives" do - # Prefer repositories from the config tree + # Prefer archives from the config tree # over the global ones. if ! ls "${PLACE}/${REPOSITORY}"* > /dev/null 2>&1 then @@ -731,17 +731,17 @@ EOF fi fi - # Configure third-party repositories - if [ -n "${LB_REPOSITORIES}" ] + # Configure third-party archives + if [ -n "${LB_ARCHIVES}" ] then - for REPOSITORY in ${LB_REPOSITORIES} + for REPOSITORY in ${LB_ARCHIVES} do # Removing sources.list entries (chroot) rm -f "chroot/etc/apt/sources.list.d/${REPOSITORY}.list" - for PLACE in config/repositories "${LB_BASE}/repositories" + for PLACE in config/archives "${LB_BASE}/archives" do - # Prefer repositories from the config tree + # Prefer archives from the config tree # over the global ones. if ! ls "${PLACE}/${REPOSITORY}"* > /dev/null 2>&1 then |