commit: 013f93f7c42e3943ebf093422a7e239aa2265cd0
Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Wed Aug 3 13:04:27 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 14:23:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=013f93f7
kde5.eclass: Fix doc install if LINGUAS is undefined
eclass/kde5.eclass | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 887a84b..c1dd3b5 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -455,6 +455,7 @@ EOF
# when required
if [[ -d po && -v LINGUAS ]] ; then
pushd po > /dev/null || die
+ local lang
for lang in *; do
if [[ -d ${lang} ]] && ! has ${lang} ${LINGUAS} ; then
rm -r ${lang} || die
@@ -470,9 +471,10 @@ EOF
popd > /dev/null || die
fi
- if [[ ${KDE_BUILD_TYPE} = release ]] ; then
- if [[ ${KDE_HANDBOOK} != false && -d ${KDE_DOC_DIR} &&
${CATEGORY} != kde-apps ]] ; then
+ if [[ ${KDE_BUILD_TYPE} = release && ${CATEGORY} != kde-apps ]] ; then
+ if [[ ${KDE_HANDBOOK} != false && -d ${KDE_DOC_DIR} && -v
LINGUAS ]] ; then
pushd ${KDE_DOC_DIR} > /dev/null || die
+ local lang
for lang in *; do
if ! has ${lang} ${LINGUAS} ; then
cmake_comment_add_subdirectory ${lang}