commit: 7ca1ba0762c15d444131c1e178d66b1619d48f2e Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Mon Sep 7 11:06:23 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Sep 7 11:07:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca1ba07
optfeature.eclass: Remove unnecessary quotes in case statement. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/optfeature.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass index b0082606cd6..1943ae37bf5 100644 --- a/eclass/optfeature.eclass +++ b/eclass/optfeature.eclass @@ -6,7 +6,7 @@ # [email protected] # @BLURB: Advertise optional functionality that might be useful to users -case "${EAPI:-0}" in +case ${EAPI:-0} in [0-7]) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;; esac
