commit: d4a0d6f746f4148ca297356130e135cbe1c5a450 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Feb 28 11:47:38 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Feb 28 22:10:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a0d6f7
kernel-install.eclass: Include a RDEP on libelf Closes: https://bugs.gentoo.org/732210 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/kernel-install.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index 965001924e7..56d40760557 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -58,6 +58,12 @@ RDEPEND=" sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 )" +# needed by objtool that is installed along with the kernel and used +# to build external modules +# NB: linux-mod.eclass also adds this dep but it's cleaner to have +# it here, and resolves QA warnings: https://bugs.gentoo.org/732210 +RDEPEND+=" + virtual/libelf" BDEPEND=" test? ( dev-tcltk/expect
