summaryrefslogtreecommitdiff
path: root/helpers/lh_bootstrap_debootstrap
diff options
context:
space:
mode:
authorChris Lamb <lamby@debian.org>2009-08-04 23:54:56 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:09:45 +0100
commit29c423b89affac8fff14848b493d982f784b133f (patch)
tree61f370f8e93a98940a858b94749380edd42134ac /helpers/lh_bootstrap_debootstrap
parente554c785c985a32eef784e2669e143797ef70bb3 (diff)
downloadlive-build-29c423b89affac8fff14848b493d982f784b133f.zip
live-build-29c423b89affac8fff14848b493d982f784b133f.tar.gz
Support LH_BOOTSTRAP_FLAVOUR="standard" when using debootstrap
cdebootstrap will accept --variant=standard, but debootstrap does not; this patch means that we don't try and pass it to debootstrap - this can happen if switching between the two utilities.
Diffstat (limited to 'helpers/lh_bootstrap_debootstrap')
-rwxr-xr-xhelpers/lh_bootstrap_debootstrap2
1 files changed, 2 insertions, 0 deletions
diff --git a/helpers/lh_bootstrap_debootstrap b/helpers/lh_bootstrap_debootstrap
index 70be888..d36c8b8 100755
--- a/helpers/lh_bootstrap_debootstrap
+++ b/helpers/lh_bootstrap_debootstrap
@@ -90,6 +90,8 @@ then
stripped|minimal)
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=minbase"
;;
+ standard)
+ ;;
*)
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"