From 9fe7318b9c63968b667680413f1569e5f7b93f14 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 21 Sep 2024 00:36:23 +0300 Subject: [PATCH] chore(rules): Change default dist compression to ZSTD Using `make dist` out of the box now creates ZSTD compressed archives instead of XZ along with a ZIP compressed archive. --- rules/rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/rules.mk b/rules/rules.mk index 6f4e42f..167e9ba 100644 --- a/rules/rules.mk +++ b/rules/rules.mk @@ -368,7 +368,7 @@ $(DISTDIR): mkdir -p $@ .PHONY: dist -dist: $(DISTDIR).zip $(DISTDIR).tar.xz +dist: $(DISTDIR).zip $(DISTDIR).tar.zst $(DISTDIR).tar.bz2 $(DISTDIR).tar.gz $(DISTDIR).tar.xz $(DISTDIR).zip $(DISTDIR).tar.zst: install-dist bsdtar -acf $@ $(DISTDIR)