From 39dd78e828a9e1f1ee14840b716b3aeeadd73b5e Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Wed, 17 Jul 2019 20:38:30 +0200 Subject: [PATCH] =?utf8?q?Don=E2=80=99t=20build=20tar.bz2=20release=20arch?= =?utf8?q?ive?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit bz2 seems more or less obsolete since xz compresses better (and decompresses faster), and gz is more ubiquitous. --- dev.mk.in | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/dev.mk.in b/dev.mk.in index fc5037c8b..da76797c9 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 \ @@ -62,7 +59,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 && \ -- 2.47.2