Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 07 Sep 2020 11:07:37
Message-Id: 1599476846.7ca1ba0762c15d444131c1e178d66b1619d48f2e.ulm@gentoo
1 commit: 7ca1ba0762c15d444131c1e178d66b1619d48f2e
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 11:06:23 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 11:07:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca1ba07
7
8 optfeature.eclass: Remove unnecessary quotes in case statement.
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/optfeature.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
16 index b0082606cd6..1943ae37bf5 100644
17 --- a/eclass/optfeature.eclass
18 +++ b/eclass/optfeature.eclass
19 @@ -6,7 +6,7 @@
20 # base-system@g.o
21 # @BLURB: Advertise optional functionality that might be useful to users
22
23 -case "${EAPI:-0}" in
24 +case ${EAPI:-0} in
25 [0-7]) ;;
26 *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;;
27 esac