Fixing squashfs.sort location with --build-with-chroot false.

This commit is contained in:
intrigeri 2010-09-30 17:30:23 +02:00 committed by Daniel Baumann
parent 4402df155c
commit 977fe45cfb
1 changed files with 10 additions and 1 deletions

View File

@ -307,7 +307,16 @@ case "${LB_CHROOT_FILESYSTEM}" in
if [ -f config/binary_rootfs/squashfs.sort ]
then
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -sort squashfs.sort"
cp config/binary_rootfs/squashfs.sort chroot #FIXME
case "${LB_BUILD_WITH_CHROOT}" in
true)
cp config/binary_rootfs/squashfs.sort chroot
;;
false)
cp config/binary_rootfs/squashfs.sort .
;;
esac
fi
case "${LB_BUILD_WITH_CHROOT}" in