binutils: Add missing texinfo dependency (#15444)

This commit is contained in:
Michael Kuhn 2020-03-12 01:34:24 +01:00 committed by GitHub
parent a9a59ea3b4
commit e01817cb15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,10 @@ class Binutils(AutotoolsPackage, GNUMirrorPackage):
depends_on('m4', type='build', when='@:2.29.99 +gold')
depends_on('bison', type='build', when='@:2.29.99 +gold')
# 2.34 needs makeinfo due to a bug, see:
# https://sourceware.org/bugzilla/show_bug.cgi?id=25491
depends_on('texinfo', type='build', when='@2.34')
conflicts('+gold', when='platform=darwin',
msg="Binutils cannot build linkers on macOS")