Add fix for binutils 2.38 +gas makeinfo issue (#30209)

Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
This commit is contained in:
Derek Ryan Strong 2022-04-27 03:11:48 -07:00 committed by GitHub
parent 79e0a3dad0
commit f66139dfe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,9 @@ class Binutils(AutotoolsPackage, GNUMirrorPackage):
depends_on('m4', type='build', when='@:2.29 +gold')
depends_on('bison', type='build', when='@:2.29 +gold')
# 2.38 with +gas needs makeinfo due to a bug, see:
# https://sourceware.org/bugzilla/show_bug.cgi?id=28909
depends_on('texinfo', type='build', when='@2.38 +gas')
# 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')