]> git.proxmox.com Git - mirror_frr.git/commitdiff
tools/tarsource.sh: fix GZIP_ENV
authorDavid Lamparter <equinox@diac24.net>
Fri, 14 Dec 2018 15:59:51 +0000 (16:59 +0100)
committerDavid Lamparter <equinox@diac24.net>
Tue, 18 Dec 2018 01:06:59 +0000 (02:06 +0100)
Some older versions of Automake don't escape this properly.

Signed-off-by: David Lamparter <equinox@diac24.net>
tools/tarsource.sh

index 673187079dee8fb7279aa14c7b88bbb4dff0b17a..8ec3346c35aeb389579e75bde27931cb482622ba 100755 (executable)
@@ -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"