diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-08-29 06:13:18 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-09-01 00:23:26 +1000 |
commit | 3b3acaf9738a1772f70c61044fd04fc42791bf34 (patch) | |
tree | a1fd3ecb85a651d86ec02a1f90fa2b6af6699d6d /eclass | |
parent | kde5.eclass: Fix SRC_URI, kdevelop missing trailing .0 in first release (diff) | |
download | gentoo-3b3acaf9738a1772f70c61044fd04fc42791bf34.tar.gz gentoo-3b3acaf9738a1772f70c61044fd04fc42791bf34.tar.bz2 gentoo-3b3acaf9738a1772f70c61044fd04fc42791bf34.zip |
kde5.eclass: a step close to becoming Turing complete
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index feffa112375e..3c2028446c77 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -523,8 +523,9 @@ EOF # if forceoptional, also cover non-kde categories cmake_comment_add_subdirectory autotests test tests elif [[ ${KDE_TEST} = forceoptional-recursive ]] ; then + punt_bogus_dep Qt5 Test local d - for d in $(find . -type d -name "autotests" -or -name "tests" -or -name "test"); do + for d in $(find . -type d -name "autotests" -or -name "tests" -or -name "test" -or -name "unittests"); do pushd ${d%/*} > /dev/null || die punt_bogus_dep Qt5 Test cmake_comment_add_subdirectory autotests test tests |