diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-12-07 10:45:37 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-12-07 10:45:37 -0500 |
commit | f59498ed6e49ef1c6e87392e71680877f8a705ca (patch) | |
tree | 71e60beb662c91213f5d0c156928955c4668decf | |
parent | dev-python/pypy3-exe-bin: Stabilize 7.3.10 amd64, #884699 (diff) | |
download | gentoo-f59498ed6e49ef1c6e87392e71680877f8a705ca.tar.gz gentoo-f59498ed6e49ef1c6e87392e71680877f8a705ca.tar.bz2 gentoo-f59498ed6e49ef1c6e87392e71680877f8a705ca.zip |
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>
-rw-r--r-- | eclass/linux-mod.eclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 34151c6f27cd..ff2294f1e4ef 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -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 |