Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Thu, 12 May 2022 15:48:04
Message-Id: 1652370444.fc9d889df0ebe70cee050edb3a81a5c5bceddca6.mpagano@gentoo
1 commit: fc9d889df0ebe70cee050edb3a81a5c5bceddca6
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 12 15:47:24 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Thu May 12 15:47:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9d889d
7
8 linux-mod.eclass: Fix function call change from portage to pkgmgr
9
10 This change is to comply with the linux-info.eclass change of the
11 function name from set_arch_to_portage to set_arch_to_pkgmgr
12
13 https://bugs.gentoo.org/843686
14
15 Signed-off-by: Mike Pagano <mpagano <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 36325fab0fa5..42e677d0670f 100644
22 --- a/eclass/linux-mod.eclass
23 +++ b/eclass/linux-mod.eclass
24 @@ -719,7 +719,7 @@ linux-mod_src_compile() {
25 fi
26 done
27
28 - set_arch_to_portage
29 + set_arch_to_pkgmgr
30 ABI="${myABI}"
31 }