From b39fb4d8b7efe1f6de31ea1fb8a3e5311dc2c5a0 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 10 Mar 2025 12:02:09 +0100 Subject: [PATCH] Revert "dnsdist: Compress the tarball containing our packages with `xz`" This reverts commit 9220ca0752305c8a04578bee78077901c966cb0e. --- builder-support/post-build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/builder-support/post-build b/builder-support/post-build index 35917d054a..bd416455df 100755 --- a/builder-support/post-build +++ b/builder-support/post-build @@ -23,16 +23,14 @@ fi for prog in pdns-recursor dnsdist; do if [ $(find ${SRCDIR}/dist -name "${prog}*" 2>/dev/null | wc -l) -ne 0 ]; then extension="tar.bz2" - tar_compression_flag="j" if [ "$prog" = "dnsdist" ]; then extension="tar.xz" - tar_compression_flag="J" fi dst=${DESTDIR}/${prog}/${BUILDER_VERSION} mkdir -p ${dst} cp ${BUILDER_TMP}/${BUILDER_VERSION}/sdist/${prog}*.${extension} ${dst} tardirname=${prog}-${BUILDER_VERSION}-${BUILDER_TARGET} - "$tar" -c${tar_compression_flag}f ${dst}/${tardirname}.${extension} --transform="s,.*/,${tardirname}/,g" $(find ${SRCDIR} -type f) + "$tar" -cjf ${dst}/${tardirname}.tar.bz2 --transform="s,.*/,${tardirname}/,g" $(find ${SRCDIR} -type f) fi done prog=pdns -- 2.47.2