diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-28 09:52:22 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-28 10:09:30 +0100 |
commit | ea17a8e1dd2ed93e8b106e449603b3fe524942ab (patch) | |
tree | 7632f1a9f93aee94237b0ea274526d7525fd76bf /eclass | |
parent | sys-fs/lvm2: Add package to base-system team (diff) | |
download | gentoo-ea17a8e1dd2ed93e8b106e449603b3fe524942ab.tar.gz gentoo-ea17a8e1dd2ed93e8b106e449603b3fe524942ab.tar.bz2 gentoo-ea17a8e1dd2ed93e8b106e449603b3fe524942ab.zip |
toolchain-autoconf.eclass: Support EAPI-7
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-autoconf.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain-autoconf.eclass b/eclass/toolchain-autoconf.eclass index cd991ec795ac..bc22921c08d3 100644 --- a/eclass/toolchain-autoconf.eclass +++ b/eclass/toolchain-autoconf.eclass @@ -4,7 +4,7 @@ # @ECLASS: toolchain-autoconf.eclass # @MAINTAINER: # <base-system@gentoo.org> -# @SUPPORTED_EAPIS: 6 +# @SUPPORTED_EAPIS: 6 7 # @BLURB: Common code for sys-devel/autoconf ebuilds # @DESCRIPTION: # This eclass contains the common phase functions migrated from @@ -14,7 +14,7 @@ case ${EAPI:-0} in [0-5]) die "${ECLASS} is banned in EAPI ${EAPI:-0}" ;; - 6) + [6-7]) ;; *) die "Unknown EAPI ${EAPI:-0}" |