From: Joel Rosdahl Date: Wed, 17 Jul 2019 18:38:30 +0000 (+0200) Subject: Don’t build tar.bz2 release archive X-Git-Tag: v4.0~889 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=14d57c746ec1439b6ece1433065724e6a0fc0e54;p=thirdparty%2Fccache.git Don’t build tar.bz2 release archive bz2 seems more or less obsolete since xz compresses better (and decompresses faster), and gz is more ubiquitous. --- diff --git a/dev.mk.in b/dev.mk.in index ac92aa256..1b728feda 100644 --- a/dev.mk.in +++ b/dev.mk.in @@ -22,11 +22,8 @@ version := \ dist_dir = ccache-$(version) dist_archives = \ - ccache-$(version).tar.bz2 \ - ccache-$(version).tar.gz -ifneq ($(shell uname), Darwin) - dist_archives += ccache-$(version).tar.xz -endif + ccache-$(version).tar.gz \ + ccache-$(version).tar.xz generated_docs = \ LICENSE.html \ @@ -64,7 +61,7 @@ headers = \ generated_headers = \ unittest/suites.h -files_to_clean += *.tar.bz2 *.tar.gz *.tar.xz *.xml doc/*.xml .deps/* perfdir.* +files_to_clean += *.tar.gz *.tar.xz *.xml doc/*.xml .deps/* perfdir.* files_to_clean += compile_commands.json files_to_clean += src/confitems_lookup.c files_to_clean += src/envtoconfitems_lookup.c @@ -145,7 +142,6 @@ $(dist_archives): $(dist_files) (cd $$tmpdir && \ tarcompression= && \ case $@ in \ - *.bz2) tarcompression=-j ;; \ *.gz) tarcompression=-z ;; \ *.xz) tarcompression=-J ;; \ esac && \