diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-10 23:41:15 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-10 23:42:04 +0100 |
commit | 75c9442984b7e0a23cf28cb2ac838a8c9102d738 (patch) | |
tree | 090f6b141318a336f84a8db11e4af0eaeaabdb0f /eclass | |
parent | sys-libs/glibc: add RESTRICT="!test? ( test )" (diff) | |
download | gentoo-75c9442984b7e0a23cf28cb2ac838a8c9102d738.tar.gz gentoo-75c9442984b7e0a23cf28cb2ac838a8c9102d738.tar.bz2 gentoo-75c9442984b7e0a23cf28cb2ac838a8c9102d738.zip |
ecm.eclass: Fix inverted usex handbook logic
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ecm.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index e24ac68cae32..b6fe0616b2ab 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -511,7 +511,7 @@ ecm_src_configure() { fi if [[ ${ECM_HANDBOOK} = optional ]] ; then - cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=$(usex handbook) ) + cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=$(usex !handbook) ) fi if in_iuse designer && [[ ${ECM_DESIGNERPLUGIN} = true ]]; then |