diff options
author | Sam James <sam@gentoo.org> | 2024-01-23 05:56:09 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-23 05:58:14 +0000 |
commit | 9aa5370643f92645e3f62b59a3d284f9a62a565f (patch) | |
tree | 761b4e31315214ceb093612acd1a3b856ce91ae9 /eclass | |
parent | dev-build/automake: compress slotted info pages (diff) | |
download | gentoo-9aa5370643f92645e3f62b59a3d284f9a62a565f.tar.gz gentoo-9aa5370643f92645e3f62b59a3d284f9a62a565f.tar.bz2 gentoo-9aa5370643f92645e3f62b59a3d284f9a62a565f.zip |
toolchain-autoconf.eclass: compress slotted info pages
As noted in the bug, we install to a different location to accommodate slotting
and hence do not benefit from the automagic compression for /usr/share/doc.
Explicitly opt-in for the info pages we install.
Bug: https://bugs.gentoo.org/922729
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-autoconf.eclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eclass/toolchain-autoconf.eclass b/eclass/toolchain-autoconf.eclass index 1eaf681496d4..330ec45dd7d1 100644 --- a/eclass/toolchain-autoconf.eclass +++ b/eclass/toolchain-autoconf.eclass @@ -115,6 +115,8 @@ toolchain-autoconf_src_install() { ln -s "$f" "${f/./-${PV}.}" || die done popd >/dev/null || die + + docompress "${TC_AUTOCONF_INFOPATH}" fi } |