diff options
Diffstat (limited to 'scripts/build/binary_rootfs')
-rwxr-xr-x | scripts/build/binary_rootfs | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/scripts/build/binary_rootfs b/scripts/build/binary_rootfs index 6704b524a..41c284ac2 100755 --- a/scripts/build/binary_rootfs +++ b/scripts/build/binary_rootfs @@ -357,16 +357,11 @@ case "${LB_CHROOT_FILESYSTEM}" in esac fi - case "${LB_PARENT_DISTRIBUTION}" in - squeeze) - - ;; - - *) - # FIXME: artax-backports too, once d-i has catched up - MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz" - ;; - esac + if [ "${LB_PARENT_DISTRIBUTION}" != "squeeze" ] && \ + [ "${LB_MODE}" != "ubuntu" ] + then + MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz" + fi case "${LB_BUILD_WITH_CHROOT}" in true) |