summaryrefslogtreecommitdiff
path: root/eclass/optfeature.eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass/optfeature.eclass')
-rw-r--r--eclass/optfeature.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
index 8fc346c3ac6a..f9870e047326 100644
--- a/eclass/optfeature.eclass
+++ b/eclass/optfeature.eclass
@@ -4,12 +4,12 @@
# @ECLASS: optfeature.eclass
# @MAINTAINER:
# base-system@gentoo.org
-# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
+# @SUPPORTED_EAPIS: 6 7 8
# @BLURB: Advertise optional functionality that might be useful to users
-case ${EAPI:-0} in
- [0-7]) ;;
- *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;;
+case ${EAPI} in
+ 6|7|8) ;;
+ *) die "${ECLASS}: EAPI=${EAPI:-0} is not supported" ;;
esac
if [[ -z ${_OPTFEATURE_ECLASS} ]]; then