diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-27 14:26:08 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-27 14:26:11 +0200 |
commit | df1cea54c56ecd4ea99e2d9d5d3cb3ce075b150a (patch) | |
tree | 2806fdd41ff447fa9423841829f36369854e937e /scripts/build/lb_bootstrap_debootstrap | |
parent | 6cb824c187d60e86d07514a648ee6dec10f47714 (diff) | |
download | vyos-live-build-df1cea54c56ecd4ea99e2d9d5d3cb3ce075b150a.tar.gz vyos-live-build-df1cea54c56ecd4ea99e2d9d5d3cb3ce075b150a.zip |
Removing bootstrap-flavour option (Closes: #685675).
live-build does too much magic that causes too much effort in
maintaining for stuff that hardly everyone uses.
Rather than 'translating' back and forth and maintaining compatibility
between options of different debootstrap and cdebootstrap versions (and
possibly any other in the future), it's is better to 'off-load' this to
the user.
For non-live specific options passed to the bootstrap tools, we'll
be introducing --debootstrap-options and --cdebootstrap-options
where users can specify their additional options passed to the
respective bootstrap tool, rather than us maintaining them in a
'hardcoded' and selected list.
Diffstat (limited to 'scripts/build/lb_bootstrap_debootstrap')
-rwxr-xr-x | scripts/build/lb_bootstrap_debootstrap | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap index 1cb371f0f..5e9caf249 100755 --- a/scripts/build/lb_bootstrap_debootstrap +++ b/scripts/build/lb_bootstrap_debootstrap @@ -81,12 +81,6 @@ case "${LB_USE_FAKEROOT}" in true) DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=fakechroot" ;; - false) - if [ -n "${LB_BOOTSTRAP_FLAVOUR}" ] - then - DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LB_BOOTSTRAP_FLAVOUR}" - fi - ;; esac if [ "${_VERBOSE}" = "true" ] |