Package: debootstrap Version: 1.0.123 There are three lines similar to this
for c in ${COMPONENTS:-$(echo ${USE_COMPONENTS} | tr '|' ' ')}; do This triggers an error during stage 2 when trying to create a chroot for potato-i386 /debootstrap/debootstrap: /debootstrap/functions: line 1536: syntax error near unexpected token `|' Those lines should be patched like this: for c in ${COMPONENTS:-$(echo "${USE_COMPONENTS}" | tr '|' ' ')}; do If I do so the image is correctly created. -- Rob. (Robert de Bath <robert$ @ debath.co.uk>) <http://www.debath.co.uk/>