diff options
| -rw-r--r-- | eclass/kde5.eclass | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 27bebb4a74d..2bee51d718e 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -453,12 +453,12 @@ kde5_src_prepare() { # only build examples when required if ! use_if_iuse examples || ! use examples ; then - comment_add_subdirectory examples + cmake_comment_add_subdirectory examples fi # only enable handbook when required if ! use_if_iuse handbook ; then - comment_add_subdirectory ${KDE_DOC_DIR} + cmake_comment_add_subdirectory ${KDE_DOC_DIR} if [[ ${KDE_HANDBOOK} = forceoptional ]] ; then punt_bogus_dep KF5 DocTools @@ -476,7 +476,7 @@ kde5_src_prepare() { rm -rf ${lang} fi if [[ -e CMakeLists.txt ]] ; then - comment_add_subdirectory ${lang} + cmake_comment_add_subdirectory ${lang} fi fi done @@ -487,7 +487,7 @@ kde5_src_prepare() { pushd ${KDE_DOC_DIR} > /dev/null || die for lang in *; do if ! has ${lang} ${LINGUAS} ; then - comment_add_subdirectory ${lang} + cmake_comment_add_subdirectory ${lang} fi done popd > /dev/null || die @@ -498,7 +498,7 @@ kde5_src_prepare() { # in frameworks, tests = manual tests so never build them if [[ ${CATEGORY} = kde-frameworks ]]; then - comment_add_subdirectory tests + cmake_comment_add_subdirectory tests fi case ${KDE_PUNT_BOGUS_DEPS} in @@ -518,13 +518,13 @@ kde5_src_prepare() { if [[ ${KDE_TEST} = forceoptional ]] ; then punt_bogus_dep Qt5 Test # if forceoptional, also cover non-kde categories - comment_add_subdirectory autotests - comment_add_subdirectory test - comment_add_subdirectory tests + cmake_comment_add_subdirectory autotests + cmake_comment_add_subdirectory test + cmake_comment_add_subdirectory tests elif [[ ${CATEGORY} = kde-frameworks || ${CATEGORY} = kde-plasma || ${CATEGORY} = kde-apps ]] ; then - comment_add_subdirectory autotests - comment_add_subdirectory test - comment_add_subdirectory tests + cmake_comment_add_subdirectory autotests + cmake_comment_add_subdirectory test + cmake_comment_add_subdirectory tests fi fi } |
