File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -155,12 +155,12 @@ foreign_arch() {
155155
156156includes_packages () {
157157 # comma sperated values
158- includes=" bzip2 pv lz4 ${INCLUDE_PACKAGES} "
158+ includes=" bzip2 pv ${INCLUDE_PACKAGES} "
159159 # environment variable INCLUDE_PACKAGES
160160 export includes
161161 x=0
162162 for item in $includes ; do
163- include_final=" $include_final , $ item"
163+ include_final=" $item "
164164 (( x = x + 1 ))
165165 done
166166 shout " $x includes processed "
@@ -218,9 +218,7 @@ do_debootstrap() {
218218 $MIRROR
219219 ) || die " Couldn't debootstrap..."
220220
221- if $foreign_worker ; then
222- do_second_stage " $target_dir " " $arch "
223- fi
221+ do_second_stage " $target_dir " " $arch "
224222
225223 if ! $NO_COMPRESSION ; then
226224 do_compress $chroot_dir
@@ -242,7 +240,7 @@ arch_translate() {
242240 t_arch=" armel"
243241 ;;
244242 amd64 | x86_64)
245- t_arch=" amd64 "
243+ t_arch=" x86_64 "
246244 ;;
247245 i686 | i386)
248246 t_arch=" i386"
You can’t perform that action at this time.
0 commit comments