diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-12 15:56:49 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-12 16:01:18 +0200 |
commit | dfaf4e8740ff7f4c04f69a6875dd5b34930bf41a (patch) | |
tree | 0f3cd61804821ae0643ef92a10097ea6036feeda /eclass | |
parent | kde5.eclass: versionator -> eapi7-ver (diff) | |
download | gentoo-dfaf4e8740ff7f4c04f69a6875dd5b34930bf41a.tar.gz gentoo-dfaf4e8740ff7f4c04f69a6875dd5b34930bf41a.tar.bz2 gentoo-dfaf4e8740ff7f4c04f69a6875dd5b34930bf41a.zip |
kde5.eclass: Inherit eutils only for EAPI-6 to avoid ebuild breakage
It is nowhere used inside the eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde5.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 681066c3caa1..b1a8b064b9bb 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -31,10 +31,10 @@ _KDE5_ECLASS=1 # for tests you should proceed with setting VIRTUALX_REQUIRED=test. : ${VIRTUALX_REQUIRED:=manual} -inherit cmake-utils eutils flag-o-matic gnome2-utils kde5-functions virtualx xdg +inherit cmake-utils flag-o-matic gnome2-utils kde5-functions virtualx xdg case ${EAPI} in - 6) inherit eapi7-ver ;; + 6) inherit eapi7-ver eutils ;; esac if [[ ${KDE_BUILD_TYPE} = live ]]; then |