diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-06-24 00:04:58 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-24 00:04:58 +0200 |
commit | e76e452410875b66e0bba1390f0dacf918a82a21 (patch) | |
tree | 8e73727ae7c5034b0e2488f40cca38b94a40faa0 /maketgz | |
parent | 2647ad2fe6a403b2411c26eb56f19a7048194fb9 (diff) | |
download | curl-e76e452410875b66e0bba1390f0dacf918a82a21.tar.gz |
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
Diffstat (limited to 'maketgz')
-rwxr-xr-x | maketgz | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ############################################################################ # |