From 7bd9c85b7a47dedbf42af9a22e596401b1f6a7ed Mon Sep 17 00:00:00 2001 From: Björn Esser Date: Sep 23 2021 09:14:32 +0000 Subject: Makefile: Use xz compression for release tarballs. Signed-off-by: Björn Esser --- diff --git a/Makefile b/Makefile index b6deddf..8914bb9 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,6 @@ force-tag: git tag --force $(TAG) dist: - @rm -f $(TAG).tar.bz2 - git archive --format=tar --prefix=$(TAG)/ $(TAG) | bzip2 > $(TAG).tar.bz2 - @echo "The archive is in $(TAG).tar.bz2" + @rm -f $(TAG).tar.xz + git archive --format=tar --prefix=$(TAG)/ $(TAG) | xz > $(TAG).tar.xz + @echo "The archive is in $(TAG).tar.xz"