diff options
author | Michael Palimaka <kensington@gentoo.org> | 2015-09-02 03:08:33 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-09-02 04:04:41 +1000 |
commit | 77fcaa450c5f820cd830138a36779ce98ce186e1 (patch) | |
tree | 83fd36fc3ff58b366e876e1336b3e85a08b0e50f | |
parent | package.mask: Remove old masks for removed PHP packages (diff) | |
download | gentoo-77fcaa450c5f820cd830138a36779ce98ce186e1.tar.gz gentoo-77fcaa450c5f820cd830138a36779ce98ce186e1.tar.bz2 gentoo-77fcaa450c5f820cd830138a36779ce98ce186e1.zip |
kde5.eclass: don't try to perform linguas operations on kde-apps handbooks.
Doing so was interfering with the handbook directory structure of some
packages, resulting in some handbooks not being installed. The operations
can be skipped completely, as all kde-apps translated handbooks are shipped
with kde-l10n.
-rw-r--r-- | eclass/kde5.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 81a1b9623c13..2e8f5c46c21b 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -404,7 +404,7 @@ kde5_src_prepare() { popd > /dev/null fi - if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} ]] ; then + if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} && ${CATEGORY} != kde-apps ]] ; then pushd ${KDE_DOC_DIR} > /dev/null for lang in *; do if ! has ${lang} ${LINGUAS} ; then |