summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-06-25 08:52:08 +0200
committerUlrich Müller <ulm@gentoo.org>2021-06-26 19:05:59 +0200
commitd929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8 (patch)
treea29d2e517df81f82231958e487eaa4caf3f39005
parenteutils.eclass: Minor touchups of EAPI conditionals (diff)
downloadgentoo-d929f33a.tar.gz
gentoo-d929f33a.tar.bz2
gentoo-d929f33a.zip
l10n.eclass: Minor touchup of EAPI conditional
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--eclass/l10n.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/l10n.eclass b/eclass/l10n.eclass
index 5cf3931b7bf5..a9d7d2f76be9 100644
--- a/eclass/l10n.eclass
+++ b/eclass/l10n.eclass
@@ -15,8 +15,8 @@
# determining the cross-section between the user's set LINGUAS and what
# is offered by the package.
-case ${EAPI:-0} in
- [567]) ;;
+case ${EAPI} in
+ 5|6|7) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac