From: David Lamparter Date: Fri, 14 Dec 2018 15:59:51 +0000 (+0100) Subject: tools/tarsource.sh: fix GZIP_ENV X-Git-Tag: frr-6.0.1~2^2~7 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e652987cff6c8baf7dfb0a8c32a1009c5038ea59;p=mirror%2Ffrr.git tools/tarsource.sh: fix GZIP_ENV Some older versions of Automake don't escape this properly. Signed-off-by: David Lamparter --- 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"