From c0a9b924a6e546c2865a375496d27ff6bea7a494 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 11 May 2024 04:13:25 +0100 Subject: Makefile: bzip2 -> xz Signed-off-by: Sam James --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f167c7b..5947e9e 100644 --- a/Makefile +++ b/Makefile @@ -51,10 +51,10 @@ dist: tag mkdir $(distpkg)/ git log > $(distpkg)/ChangeLog tar vfr $(distpkg).tar $(distpkg)/ChangeLog - bzip2 $(distpkg).tar + xz $(distpkg).tar rm -rf $(distpkg)/ @echo "success." dist-upload: dist - scp $(distpkg).tar.bz2 dev.gentoo.org:/space/distfiles-local/ - ssh dev.gentoo.org chmod ug+rw /space/distfiles-local/$(distpkg).tar.bz2 + scp $(distpkg).tar.xz dev.gentoo.org:/space/distfiles-local/ + ssh dev.gentoo.org chmod ug+rw /space/distfiles-local/$(distpkg).tar.xz -- cgit v1.2.3-65-gdbad