diff options
author | 2021-06-21 14:43:50 +0100 | |
---|---|---|
committer | 2021-06-21 14:46:20 +0100 | |
commit | f7b715c14cd9af2686b1da5be1e677de048a6178 (patch) | |
tree | 4e881a97547250868175cc2b0061878c80dc4d64 /eclass | |
parent | net-mail/dovecot: security bump to 2.3.14.1 (diff) | |
download | gentoo-f7b715c14cd9af2686b1da5be1e677de048a6178.tar.gz gentoo-f7b715c14cd9af2686b1da5be1e677de048a6178.tar.bz2 gentoo-f7b715c14cd9af2686b1da5be1e677de048a6178.zip |
toolchain-funcs.eclass: restore EAPI=0 support used by crossdev
Reported-by: Marco Scardovi (scardracs)
Bug: https://bugs.gentoo.org/797367
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index e0e8433f4d41..1643f64cab76 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -14,7 +14,8 @@ # something sane. case ${EAPI:-0} in - [567]) ;; + # EAPI=0 is still used by crossdev, bug #797367 + [0567]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |