Using xz to compress images on anything except squeeze, keeping gzip as default for squeeze.

This commit is contained in:
Daniel Baumann 2012-07-18 19:45:14 +02:00
parent f4de284deb
commit 27f7d92862
1 changed files with 9 additions and 1 deletions

View File

@ -941,7 +941,15 @@ Set_defaults ()
;;
*)
LB_COMPRESSION="${LB_COMPRESSION:-gzip}"
case "${LB_DISTRIBUTION}" in
squeeze)
LB_COMPRESSION="${LB_COMPRESSION:-gzip}"
;;
*)
LB_COMPRESSION="${LB_COMPRESSION:-xz}"
;;
esac
;;
esac