summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Rood <jon.rood@nrel.gov>2022-12-07 19:08:37 -0700
committerGitHub <noreply@github.com>2022-12-08 03:08:37 +0100
commit7ee4499f2b9b7248c6cb605fcd514e69c6b8be79 (patch)
tree7899d1451952e667c05862509b7814cc33dfcc2e
parent641adae961253c7627776a9bf67b594a43a185b0 (diff)
downloadspack-7ee4499f2b9b7248c6cb605fcd514e69c6b8be79.tar.gz
spack-7ee4499f2b9b7248c6cb605fcd514e69c6b8be79.tar.bz2
spack-7ee4499f2b9b7248c6cb605fcd514e69c6b8be79.tar.xz
spack-7ee4499f2b9b7248c6cb605fcd514e69c6b8be79.zip
Add texinfo dependency for binutils through version 2.38. (#34173)
-rw-r--r--var/spack/repos/builtin/packages/binutils/package.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py
index f5a9ae7fd9..7e358c3079 100644
--- a/var/spack/repos/builtin/packages/binutils/package.py
+++ b/var/spack/repos/builtin/packages/binutils/package.py
@@ -81,12 +81,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:
+ # 2.34:2.38 needs makeinfo due to a bug, see:
# https://sourceware.org/bugzilla/show_bug.cgi?id=25491
- depends_on("texinfo", type="build", when="@2.34")
+ depends_on("texinfo", type="build", when="@2.34:2.38")
conflicts("+gold", when="platform=darwin", msg="Binutils cannot build linkers on macOS")