summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDerek Ryan Strong <drstrong@protonmail.com>2022-04-27 03:11:48 -0700
committerGitHub <noreply@github.com>2022-04-27 12:11:48 +0200
commitf66139dfe47b7b0e30b9fd62b95fc29a28c0c001 (patch)
tree06218498adc3ad706f3a5e610459dff233984ddc /var
parent79e0a3dad0faa6f7575ead75559dc6d819a1cfb8 (diff)
downloadspack-f66139dfe47b7b0e30b9fd62b95fc29a28c0c001.tar.gz
spack-f66139dfe47b7b0e30b9fd62b95fc29a28c0c001.tar.bz2
spack-f66139dfe47b7b0e30b9fd62b95fc29a28c0c001.tar.xz
spack-f66139dfe47b7b0e30b9fd62b95fc29a28c0c001.zip
Add fix for binutils 2.38 +gas makeinfo issue (#30209)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/binutils/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py
index ea937d82dd..8e16bb0e93 100644
--- a/var/spack/repos/builtin/packages/binutils/package.py
+++ b/var/spack/repos/builtin/packages/binutils/package.py
@@ -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')