diff options
author | Mike Pagano <mpagano@gentoo.org> | 2022-05-12 11:47:24 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2022-05-12 11:47:24 -0400 |
commit | fc9d889df0ebe70cee050edb3a81a5c5bceddca6 (patch) | |
tree | 05af07ae40aadeeefae97d87dd810e1340a72c9b /eclass | |
parent | dev-db/postgresql: Bump (diff) | |
download | gentoo-fc9d889df0ebe70cee050edb3a81a5c5bceddca6.tar.gz gentoo-fc9d889df0ebe70cee050edb3a81a5c5bceddca6.tar.bz2 gentoo-fc9d889df0ebe70cee050edb3a81a5c5bceddca6.zip |
linux-mod.eclass: Fix function call change from portage to pkgmgr
This change is to comply with the linux-info.eclass change of the
function name from set_arch_to_portage to set_arch_to_pkgmgr
https://bugs.gentoo.org/843686
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 36325fab0fa5..42e677d0670f 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -719,7 +719,7 @@ linux-mod_src_compile() { fi done - set_arch_to_portage + set_arch_to_pkgmgr ABI="${myABI}" } |