Fixing squashfs.sort location with --build-with-chroot false.
This commit is contained in:
parent
4402df155c
commit
977fe45cfb
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue