Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 28 Dec 2022 10:24:32
Message-Id: 1672223019.d779705500b4600919b6d5c187afc34870a0d2e5.ionen@gentoo
1 commit: d779705500b4600919b6d5c187afc34870a0d2e5
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 28 10:14:06 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 28 10:23:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7797055
7
8 linux-mod.eclass: revert adding || die for Modules.symvers
9
10 Emergency fix given this apparently broke potentially several
11 packages, at least e.g. virtualbox-modules, and zenpower3 from guru.
12
13 Fixes: bc0ef44947363a33b5cd9b18bcc0d3c32b808311
14 Closes: https://bugs.gentoo.org/888679
15 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
16
17 eclass/linux-mod.eclass | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass
21 index aea2a38f233e..79c33b34f6df 100644
22 --- a/eclass/linux-mod.eclass
23 +++ b/eclass/linux-mod.eclass
24 @@ -622,7 +622,7 @@ linux-mod_src_compile() {
25
26 if [[ ! -f "${srcdir}/.built" ]]; then
27 cd "${srcdir}" || die
28 - ln -s "${S}"/Module.symvers Module.symvers || die
29 + ln -s "${S}"/Module.symvers Module.symvers
30 einfo "Preparing ${modulename} module"
31 if [[ -n ${ECONF_PARAMS} ]]; then
32 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)"