diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-25 14:48:14 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-25 22:23:18 +0100 |
commit | fbe340ce6d8af0ae9c7aa57a204eead54653a7a2 (patch) | |
tree | f60cceb7003466be4f2d8dd96770c6f6cd70c2f6 /eclass | |
parent | kde-apps/konsole: Drop 18.12.0-r1 (diff) | |
download | gentoo-fbe340ce6d8af0ae9c7aa57a204eead54653a7a2.tar.gz gentoo-fbe340ce6d8af0ae9c7aa57a204eead54653a7a2.tar.bz2 gentoo-fbe340ce6d8af0ae9c7aa57a204eead54653a7a2.zip |
cmake-multilib.eclass: Support EAPI 7
Simple follow-up to cmake-utils supporting EAPI 7, no changes.
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-multilib.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cmake-multilib.eclass b/eclass/cmake-multilib.eclass index 7c65e11536b3..b43995d0df51 100644 --- a/eclass/cmake-multilib.eclass +++ b/eclass/cmake-multilib.eclass @@ -20,7 +20,7 @@ # phase rather than 'default'. case ${EAPI:-0} in - 6) ;; + [67]) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |