From bf8bc21b5d0fb386bb14019ebe7ebab6dd85cdef Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 8 Dec 2022 01:29:48 +0100 Subject: Makefile: Create LZMA-compressed dist-files Use a more modern alternative to bzip2. Suggested-by: Jan Engelhardt Suggested-by: Pablo Neira Ayuso Signed-off-by: Phil Sutter --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 799bf8b8..19a93a55 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,7 +26,7 @@ tarball: rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION}; pushd ${top_srcdir} && git archive --prefix=${PACKAGE_TARNAME}-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd; pushd /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION} && ./autogen.sh && popd; - tar -C /tmp -cjf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/; + tar -C /tmp -cJf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.xz --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/; rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION}; config.status: extensions/GNUmakefile.in \ -- cgit v1.2.3