linux-mod.eclass: Warn about removal of econf called in compile phase func

Notify packaga maintainers that their package relies on
the EAPI deprecated use of econf being called in
linux-mod_src_compile, which will go away in 30 days (20230107)

Bug: https://bugs.gentoo.org/340597

Signed-off-by: Mike Pagano <mpagano@gentoo.org>
This commit is contained in:
Mike Pagano
2022-12-07 10:45:37 -05:00
parent fb33feedbe
commit f59498ed6e

View File

@@ -652,6 +652,7 @@ linux-mod_src_compile() {
einfo "Preparing ${modulename} module"
if [[ -n ${ECONF_PARAMS} ]]
then
eqawarn "This package relies on the deprecated functionality of econf being called in linux-mod_src_compile (ECONF_PARAMS), which will go away in 30 days (20230107) (https://bugs.gentoo.org/340597)"
econf ${ECONF_PARAMS} || \
die "Unable to run econf ${ECONF_PARAMS}"
fi