diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-27 14:33:57 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-27 14:33:57 +0200 |
commit | fda74e43074d51b5aabcb898dba623c2d82a5b50 (patch) | |
tree | 2d22e66da236a88fe8b9e52e874f14bc19b28c1d /scripts/build/lb_bootstrap_debootstrap | |
parent | df1cea54c56ecd4ea99e2d9d5d3cb3ce075b150a (diff) | |
download | vyos-live-build-fda74e43074d51b5aabcb898dba623c2d82a5b50.tar.gz vyos-live-build-fda74e43074d51b5aabcb898dba623c2d82a5b50.zip |
Removing bootstrap-include and bootstrap-exclude options.
Diffstat (limited to 'scripts/build/lb_bootstrap_debootstrap')
-rwxr-xr-x | scripts/build/lb_bootstrap_debootstrap | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap index 5e9caf249..901b90797 100755 --- a/scripts/build/lb_bootstrap_debootstrap +++ b/scripts/build/lb_bootstrap_debootstrap @@ -67,16 +67,6 @@ then DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --components=$(echo ${LB_ARCHIVE_AREAS} | sed -e 's| |,|g')" fi -if [ -n "${LB_BOOTSTRAP_INCLUDE}" ] -then - DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --include=$(echo ${LB_BOOTSTRAP_INCLUDE} | sed 's| *|,|g')" -fi - -if [ -n "${LB_BOOTSTRAP_EXCLUDE}" ] -then - DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --exclude=$(echo ${LB_BOOTSTRAP_EXCLUDE} | sed 's| *|,|g')" -fi - case "${LB_USE_FAKEROOT}" in true) DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=fakechroot" |