diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-02-12 15:22:47 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-02-12 15:22:47 -0500 |
commit | b984f1b57fba45cebdbf990eb02d25fda34d44a5 (patch) | |
tree | 8310160d5bb0a3089c2c418a4b72e3acca68c21b /eclass | |
parent | sys-apps/flatpak: Bump to version 1.12.5 (diff) | |
download | gentoo-b984f1b57fba45cebdbf990eb02d25fda34d44a5.tar.gz gentoo-b984f1b57fba45cebdbf990eb02d25fda34d44a5.tar.bz2 gentoo-b984f1b57fba45cebdbf990eb02d25fda34d44a5.zip |
linux-mod.eclass: Fix EAPI 8 support
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 4921f9af3dd0..e327be7ca13f 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -150,7 +150,11 @@ # It's a read-only variable. It contains the extension of the kernel modules. case ${EAPI:-0} in - [67]) inherit eutils ;; + [67]) + inherit eutils + ;; + 8) + ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |