commit: 58b2477705c84cccbf830d077d2fcbb38486b0b9 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue May 24 21:09:42 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue May 24 21:09:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b24777
sys-apps/pciutils: add I_KNOW_WHAT_I_AM_DOING bypass for Binutils check Bug: https://bugs.gentoo.org/847133 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/pciutils/pciutils-3.8.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/pciutils/pciutils-3.8.0.ebuild b/sys-apps/pciutils/pciutils-3.8.0.ebuild index 94b7ab8f4246..4d7fb6ed74e8 100644 --- a/sys-apps/pciutils/pciutils-3.8.0.ebuild +++ b/sys-apps/pciutils/pciutils-3.8.0.ebuild @@ -38,7 +38,7 @@ switch_config() { } check_binutils_version() { - if ! tc-ld-is-gold && ! tc-ld-is-lld ; then + if [[ -z ${I_KNOW_WHAT_I_AM_DOING} ]] && ! tc-ld-is-gold && ! tc-ld-is-lld ; then # Okay, hopefully it's Binutils' bfd. # bug #847133
