diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-04-03 20:02:03 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-04-17 22:12:25 +0200 |
commit | c1aa9edc616545500b62ffbcbd7fc4f7a37a0872 (patch) | |
tree | a8083fac5ee8e0801f89b3e72dadb41a0f08a557 /eclass/elisp.eclass | |
parent | elisp-common.eclass: Drop support for EAPI 5 (diff) | |
download | gentoo-c1aa9edc616545500b62ffbcbd7fc4f7a37a0872.tar.gz gentoo-c1aa9edc616545500b62ffbcbd7fc4f7a37a0872.tar.bz2 gentoo-c1aa9edc616545500b62ffbcbd7fc4f7a37a0872.zip |
elisp.eclass: Update EAPI conditional
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r-- | eclass/elisp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 2fea311305f1..6b6679df5c5d 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 2002-2021 Gentoo Authors +# Copyright 2002-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -64,7 +64,7 @@ inherit elisp-common -case ${EAPI:-0} in +case ${EAPI} in 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |