diff options
-rw-r--r-- | eclass/toolchain-funcs.eclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 267cf5cfce34..6806bd0883bb 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -5,6 +5,7 @@ # @MAINTAINER: # Toolchain Ninjas <toolchain@gentoo.org> # @BLURB: functions to query common info about the toolchain +# @SUPPORTED_EAPIS: 5 6 7 # @DESCRIPTION: # The toolchain-funcs aims to provide a complete suite of functions # for gleaning useful information about the toolchain and to simplify @@ -12,6 +13,11 @@ # in such a way that you can rely on the function always returning # something sane. +case ${EAPI:-0} in + [567]) ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; +esac + if [[ -z ${_TOOLCHAIN_FUNCS_ECLASS} ]]; then _TOOLCHAIN_FUNCS_ECLASS=1 |