dotnet-utils.eclass: use standard eapi guard

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-11-25 16:12:41 +05:00
parent dffc403d23
commit 357b53a297

View File

@@ -9,12 +9,9 @@
# @SUPPORTED_EAPIS: 7 8
# @BLURB: common functions and variables for dotnet builds
case "${EAPI:-0}" in
7|8)
;;
*)
die "Unsupported EAPI=${EAPI} for ${ECLASS}"
;;
case ${EAPI} in
7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI} unsupported." ;;
esac
inherit multiprocessing