summaryrefslogtreecommitdiff
path: root/maketgz
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-06-21 22:40:55 +0200
committerng0 <ng0@infotropique.org>2017-08-22 15:28:19 +0000
commit4d50b1176eacf94646581255383ee39b85511745 (patch)
tree345c1bcc561003cc4266347675bee680adb6e19f /maketgz
parent4ccaaa9c1e2a7627fa668f837ff7af7ac5523758 (diff)
downloadgnurl-4d50b1176eacf94646581255383ee39b85511745.tar.gz
gnurl-4d50b1176eacf94646581255383ee39b85511745.tar.bz2
gnurl-4d50b1176eacf94646581255383ee39b85511745.zip
maketgz: switch to xz instead of lzma
The compressed output size seems to be a tad bit smaller, but generally xz seems more preferred these days and is used directly by for example gentoo instead of bz2. "Users of LZMA Utils should move to XZ Utils" => https://tukaani.org/lzma/ Closes #1604
Diffstat (limited to 'maketgz')
-rwxr-xr-xmaketgz6
1 files changed, 3 insertions, 3 deletions
diff --git a/maketgz b/maketgz
index 9a845c25f..b6f7995d8 100755
--- a/maketgz
+++ b/maketgz
@@ -175,7 +175,7 @@ gzip -dc $targz | bzip2 --best > $bzip2
############################################################################
#
-# Now make an lzma archive from the tar.gz original
+# Now make an xz archive from the tar.gz original
#
lzma="gnurl-$version.tar.lzma"
@@ -206,7 +206,7 @@ makezip
echo "------------------"
echo "maketgz report:"
echo ""
-ls -l $targz $bzip2 $zip $lzma
+ls -l $targz $bzip2 $zip $xz
echo "Run this:"
-echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $lzma"
+echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $xz"