From: Phil Sutter Date: Thu, 8 Dec 2022 00:29:48 +0000 (+0100) Subject: Makefile: Create LZMA-compressed dist-files X-Git-Tag: v1.8.9~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf8bc21b5d0fb386bb14019ebe7ebab6dd85cdef;p=thirdparty%2Fiptables.git 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 --- 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 \