diff options
author | Daniel Baumann <daniel@debian.org> | 2007-10-30 06:35:35 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:28 +0100 |
commit | c8bb19dd48f0047de85cda401a7ba5e037e6db4a (patch) | |
tree | 2d0495e322966597a0354d2554dc4c508066364d /helpers/lh_bootstrap_debootstrap | |
parent | 3e3576989c49d78249072ecd6160a1c8bd1d1cf8 (diff) | |
download | live-build-c8bb19dd48f0047de85cda401a7ba5e037e6db4a.zip live-build-c8bb19dd48f0047de85cda401a7ba5e037e6db4a.tar.gz |
Respecting LH_BOOTSTRAP_FLAVOUR (Closes: #448034).
Diffstat (limited to 'helpers/lh_bootstrap_debootstrap')
-rwxr-xr-x | helpers/lh_bootstrap_debootstrap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/helpers/lh_bootstrap_debootstrap b/helpers/lh_bootstrap_debootstrap index c25b379..101ab95 100755 --- a/helpers/lh_bootstrap_debootstrap +++ b/helpers/lh_bootstrap_debootstrap @@ -82,6 +82,17 @@ then DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --exclude=${LH_BOOTSTRAP_EXCLUDE}" fi +if [ -z "${LH_BOOTSTRAP_FLAVOUR}" ] +then + case "${LH_PACKAGES_LISTS}" in + minimal|mini) + DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=buildd" + ;; + esac +else + DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}" +fi + if [ "${LH_VERBOSE}" = "true" ] then DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --verbose" |