Fixing typing error (wrong variable name).

This commit is contained in:
Daniel Baumann 2007-10-31 10:49:38 +01:00
parent 779a9dbe2e
commit eaadafff8e
1 changed files with 2 additions and 2 deletions

View File

@ -86,11 +86,11 @@ if [ -z "${LH_BOOTSTRAP_FLAVOUR}" ]
then
case "${LH_PACKAGES_LISTS}" in
minimal|mini)
DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=buildd"
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=buildd"
;;
esac
else
DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"
fi
if [ "${LH_VERBOSE}" = "true" ]