diff options
author | 2021-06-24 13:51:07 -0400 | |
---|---|---|
committer | 2021-06-28 13:23:20 -0400 | |
commit | 18a01a9ed1bf8132464a0104344b976804912e4d (patch) | |
tree | 364f2c8cef39b9cc94015d908b400384d888702b /eclass | |
parent | meson.eclass: EAPI 8 support (diff) | |
download | gentoo-18a01a9ed1bf8132464a0104344b976804912e4d.tar.gz gentoo-18a01a9ed1bf8132464a0104344b976804912e4d.tar.bz2 gentoo-18a01a9ed1bf8132464a0104344b976804912e4d.zip |
eapi7-ver.eclass: update EAPI 8 error message
Signed-off-by: David Michael <fedora.dm0@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/21409
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eapi7-ver.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eapi7-ver.eclass b/eclass/eapi7-ver.eclass index 8f13fc9af762..a23e76ad3ee3 100644 --- a/eclass/eapi7-ver.eclass +++ b/eclass/eapi7-ver.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: eapi7-ver.eclass @@ -58,7 +58,7 @@ case ${EAPI:-0} in 0|1|2|3|4|5|6) ;; - 7) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;; + 7|8) die "${ECLASS}: EAPI=${EAPI} includes all functions from this eclass" ;; *) die "${ECLASS}: EAPI=${EAPI} unknown" ;; esac |