diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-05-13 10:31:53 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-05-13 10:31:53 +0200 |
commit | cc5f4511b43b91f6df2fe63a4194ab596b706a80 (patch) | |
tree | 2afc5e8be8d6814f38cc0a08afe0a437cc024e7e /eclass | |
parent | app-crypt/badkeys: add 0.0.11 (diff) | |
download | gentoo-cc5f4511b43b91f6df2fe63a4194ab596b706a80.tar.gz gentoo-cc5f4511b43b91f6df2fe63a4194ab596b706a80.tar.bz2 gentoo-cc5f4511b43b91f6df2fe63a4194ab596b706a80.zip |
texlive-module.eclass: check if texmf-dist/doc/man exists
Closes: https://bugs.gentoo.org/931798
Closes: https://bugs.gentoo.org/931799
Closes: https://bugs.gentoo.org/931800
Closes: https://bugs.gentoo.org/931801
Closes: https://bugs.gentoo.org/931802
Closes: https://bugs.gentoo.org/931803
Closes: https://bugs.gentoo.org/931804
Closes: https://bugs.gentoo.org/931805
Closes: https://bugs.gentoo.org/931806
Closes: https://bugs.gentoo.org/931807
Closes: https://bugs.gentoo.org/931808
Closes: https://bugs.gentoo.org/931809
Closes: https://bugs.gentoo.org/931810
Closes: https://bugs.gentoo.org/931811
Closes: https://bugs.gentoo.org/931812
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/texlive-module.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index da33e25a39dc..0daca41961ff 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -360,7 +360,7 @@ texlive-module_src_install() { cp -pR texmf-doc "${ED}/usr/share/" || die fi - if ver_test -ge 2023 && [[ ${CATEGORY} == dev-texlive ]]; then + if ver_test -ge 2023 && [[ -d texmf-dist/doc/man && ${CATEGORY} == dev-texlive ]]; then local texlive_core_man_pages=( afm2pl.1 aleph.1 |