Adding a comment to the chroot calls in excludes handling of binary_chroot whey the chroot function is not used.

This commit is contained in:
Daniel Baumann 2011-07-20 18:24:32 +02:00
parent b7f70c339f
commit 346397d2e0
1 changed files with 2 additions and 0 deletions

View File

@ -102,12 +102,14 @@ then
case "${LB_BUILD_WITH_CHROOT}" in
true)
cp config/binary_rootfs/excludes chroot/chroot/excludes
# Not using Chroot() here because we want explicitly /bin/bash (for the time being)
chroot chroot/chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
rm -f chroot/chroot/excludes
;;
false)
cp config/binary_rootfs/excludes chroot/excludes
# Not using Chroot() here because we want explicitly /bin/bash (for the time being)
chroot chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
rm -f chroot/excludes
;;