mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 11:04:10 -04:00
dotnet-utils.eclass: use standard eapi guard
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user