From 3f406e3f8ee6656d96be71a580b45efd34c333fe Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Fri, 14 Dec 2018 16:59:51 +0100 Subject: [PATCH] tools/tarsource.sh: fix GZIP_ENV Some older versions of Automake don't escape this properly. Signed-off-by: David Lamparter --- tools/tarsource.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tarsource.sh b/tools/tarsource.sh index 673187079d..8ec3346c35 100755 --- a/tools/tarsource.sh +++ b/tools/tarsource.sh @@ -262,7 +262,7 @@ PACKAGE_VERSION="$DIST_PACKAGE_VERSION" echo -e "\033[33;1mpacking up \033[36;1mfrr-$PACKAGE_VERSION\033[m" -make GZIP_ENV="--best -n" am__tar="tar -chof - $taropt \"\$\$tardir\"" $ziptarget +make GZIP_ENV="-n9" am__tar="tar -chof - $taropt \"\$\$tardir\"" $ziptarget mv frr-${PACKAGE_VERSION}.tar.$zip "$outdir" || true lsfiles="frr-${PACKAGE_VERSION}.tar.$zip" -- 2.39.5