diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-07-04 17:43:45 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-07 21:47:25 +0200 |
commit | 7f903fb49892330c151e8184998887b69aeecd30 (patch) | |
tree | ed4dd7d7177eba6e4192e2cb4eb190bc9e7572a2 /eclass/aspell-dict-r1.eclass | |
parent | eclass/aspell-dict-r1.eclass: add EAPI 8 support (diff) | |
download | gentoo-7f903fb49892330c151e8184998887b69aeecd30.tar.gz gentoo-7f903fb49892330c151e8184998887b69aeecd30.tar.bz2 gentoo-7f903fb49892330c151e8184998887b69aeecd30.zip |
eclass/aspell-dict-r1.eclass: standardise error message
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'eclass/aspell-dict-r1.eclass')
-rw-r--r-- | eclass/aspell-dict-r1.eclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass index 09f22dbf8c0c..a779bf96e82b 100644 --- a/eclass/aspell-dict-r1.eclass +++ b/eclass/aspell-dict-r1.eclass @@ -37,13 +37,10 @@ readonly ASPELL_SPELLANG=${PN/aspell-/} # If the value needs to be overridden, it needs to be overridden before inheriting the eclass. case ${EAPI:-0} in - [0-6]) - die "${ECLASS} is banned in EAPI ${EAPI:-0}" - ;; [7-8]) ;; *) - die "Unknown EAPI ${EAPI:-0}" + die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |