Adding note about 404 errors that are on purpose when fetching udebs in derivative mode.

This commit is contained in:
Daniel Baumann 2012-02-04 15:54:37 +01:00
parent eff9c23843
commit 0b6d68ce73
1 changed files with 8 additions and 1 deletions

View File

@ -523,7 +523,14 @@ then
UDEBS="${UDEBS} $(awk '/Filename: / { print $2 }' Packages)"
# Downloading udebs
# Downloading udebs packages
Echo_message "Downloading udebs..."
if [ "${LB_DERIVATIVE}" = "true" ]
then
Echo_message "Building in derivative mode in debian+ layout.. a lot of 404 errors are ok here."
fi
for UDEB in ${UDEBS}
do
if [ -f ../cache/packages_debian-installer.udeb/"$(basename ${UDEB})" ]