summaryrefslogtreecommitdiff
path: root/maketgz
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-06-24 00:04:58 +0200
committerng0 <ng0@infotropique.org>2017-08-22 15:29:34 +0000
commit62f6f3332512337b4136695499e233ae1f4a42f9 (patch)
tree63fff77b00d8c188936248004f9bd427942912a7 /maketgz
parent87c0a7eadda0e62368a6add3f6eaea391d32679a (diff)
downloadgnurl-62f6f3332512337b4136695499e233ae1f4a42f9.tar.gz
gnurl-62f6f3332512337b4136695499e233ae1f4a42f9.tar.bz2
gnurl-62f6f3332512337b4136695499e233ae1f4a42f9.zip
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-xmaketgz6
1 files changed, 3 insertions, 3 deletions
diff --git a/maketgz b/maketgz
index b6f7995d8..c5e567512 100755
--- a/maketgz
+++ b/maketgz
@@ -178,9 +178,9 @@ gzip -dc $targz | bzip2 --best > $bzip2
# Now make an xz archive from the tar.gz original
#
-lzma="gnurl-$version.tar.lzma"
-echo "Generating $lzma"
-gzip -dc $targz | lzma --best - > $lzma
+xz="gnurl-$version.tar.xz"
+echo "Generating $xz"
+gzip -dc $targz | xz -6e - > $xz
############################################################################
#