Commit e76e4524 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

maketgz: switch to -6e for xz

To reduce the memory requirement for decompress, and still do almost as
good compression as with -9e.

Pointed-out-by: Dan Fandrich
parent 2647ad2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ gzip -dc $targz | bzip2 --best > $bzip2

xz="curl-$version.tar.xz"
echo "Generating $xz"
gzip -dc $targz | xz -9e - > $xz
gzip -dc $targz | xz -6e - > $xz

############################################################################
#