diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-11-01 04:07:13 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-11-01 04:10:42 -0400 |
commit | 017bff0a540eab67bd9657d4455f13a62dbcca28 (patch) | |
tree | 40239884f21b5c2c36b0f0c5dd2b75095ea51ae8 /eclass | |
parent | sci-chemistry/gromacs: enable py3.12 (diff) | |
download | gentoo-017bff0a540eab67bd9657d4455f13a62dbcca28.tar.gz gentoo-017bff0a540eab67bd9657d4455f13a62dbcca28.tar.bz2 gentoo-017bff0a540eab67bd9657d4455f13a62dbcca28.zip |
linux-mod-r1.eclass: fix DEPMOD override for kernel 6.6
Not necessary, but also change STRIP while at it for parity.
Closes: https://bugs.gentoo.org/916587
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-mod-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/linux-mod-r1.eclass b/eclass/linux-mod-r1.eclass index 2a3dde6a3101..858fb0628070 100644 --- a/eclass/linux-mod-r1.eclass +++ b/eclass/linux-mod-r1.eclass @@ -1161,8 +1161,8 @@ _modules_set_makeargs() { # eclass handle strip, sign, compress, and depmod (CONFIG_ should # have no impact on building, only used by Makefile.modinst) CONFIG_MODULE_{SIG_ALL,COMPRESS_{GZIP,XZ,ZSTD}}= - DEPMOD=: - STRIP=: + DEPMOD=true #916587 + STRIP=true ) if [[ ! ${MODULES_I_WANT_FULL_CONTROL} ]]; then |