diff options
author | Sam James <sam@gentoo.org> | 2022-05-24 22:09:42 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-24 22:09:42 +0100 |
commit | 58b2477705c84cccbf830d077d2fcbb38486b0b9 (patch) | |
tree | 4c663d236b5c67ee7ad0d04660fbd7876496270d /sys-apps/pciutils | |
parent | sys-apps/pciutils: bail out on too stale binutils for 3.8.0+ (diff) | |
download | gentoo-58b2477705c84cccbf830d077d2fcbb38486b0b9.tar.gz gentoo-58b2477705c84cccbf830d077d2fcbb38486b0b9.tar.bz2 gentoo-58b2477705c84cccbf830d077d2fcbb38486b0b9.zip |
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@gentoo.org>
Diffstat (limited to 'sys-apps/pciutils')
-rw-r--r-- | sys-apps/pciutils/pciutils-3.8.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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 |