build: use best compression when installing info

This commit is contained in:
Jeremy Sowden 2023-11-03 21:02:42 +00:00
parent 14c2b373eb
commit 548abdac76
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ infofile=$2
# install
if test -z "${DESTDIR}"; then
install-info --info-dir "${infodir}" "${infodir}/${infofile}"
gzip --force "${infodir}/${infofile}"
gzip --best --force "${infodir}/${infofile}"
fi