diff options
author | Chris Lamb <lamby@debian.org> | 2009-08-04 23:54:56 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:45 +0100 |
commit | 29c423b89affac8fff14848b493d982f784b133f (patch) | |
tree | 61f370f8e93a98940a858b94749380edd42134ac /helpers | |
parent | e554c785c985a32eef784e2669e143797ef70bb3 (diff) | |
download | vyos-live-build-29c423b89affac8fff14848b493d982f784b133f.tar.gz vyos-live-build-29c423b89affac8fff14848b493d982f784b133f.zip |
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')
-rwxr-xr-x | helpers/lh_bootstrap_debootstrap | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helpers/lh_bootstrap_debootstrap b/helpers/lh_bootstrap_debootstrap index 70be888a3..d36c8b821 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}" |