diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-04-19 17:27:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-04-19 17:27:01 +0200 |
commit | 83b16f1bf65d36e5d3ddb33c59d142b77ae10068 (patch) | |
tree | db1cf71997ab9d91d3c52cf952ba88e1e7313d80 | |
parent | 56a037cc0ad1b2a770d0c08d3d09dee1ce600f0f (diff) | |
download | curl-bagder/maketgz.tar.gz |
maketgz: use -9 for the xz packagebagder/maketgz
Reported-by: Annatar34381343 on twitter
-rwxr-xr-x | maketgz | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -186,7 +186,7 @@ gzip -dc $targz | bzip2 --best > $bzip2 xz="curl-$version.tar.xz" echo "Generating $xz" -gzip -dc $targz | xz -6e - > $xz +gzip -dc $targz | xz -9e - > $xz ############################################################################ # |