summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-06-21 12:13:44 +0200
committerUlrich Müller <ulm@gentoo.org>2021-06-23 12:21:35 +0200
commit7223386aab278e850a0edfc9947b18f9211ce3c4 (patch)
tree3fca222cd442cca4b41d727d7db3ceaf34314841 /eclass
parentlibtool.eclass: Support EAPI 8 (diff)
downloadgentoo-7223386aab278e850a0edfc9947b18f9211ce3c4.tar.gz
gentoo-7223386aab278e850a0edfc9947b18f9211ce3c4.tar.bz2
gentoo-7223386aab278e850a0edfc9947b18f9211ce3c4.zip
flag-o-matic.eclass: Support EAPI 8
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/flag-o-matic.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index 2e04e2acb06b..d262a60b6bb2 100644
--- a/eclass/flag-o-matic.eclass
+++ b/eclass/flag-o-matic.eclass
@@ -4,7 +4,7 @@
# @ECLASS: flag-o-matic.eclass
# @MAINTAINER:
# toolchain@gentoo.org
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
# @BLURB: common functions to manipulate and query toolchain flags
# @DESCRIPTION:
# This eclass contains a suite of functions to help developers sanely
@@ -12,7 +12,7 @@
case ${EAPI:-0} in
0|1|2|3|4) die "flag-o-matic.eclass: EAPI ${EAPI} is too old." ;;
- 5|6|7) ;;
+ 5|6|7|8) ;;
*) die "EAPI ${EAPI} is not supported by flag-o-matic.eclass." ;;
esac