summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@informatik.uni-hamburg.de>2020-03-12 01:34:24 +0100
committerGitHub <noreply@github.com>2020-03-11 19:34:24 -0500
commite01817cb1571f0cbf0b8810adb7e4cd84f208176 (patch)
tree96dc9497ec20e8ce1b06e5f3e2474a34821bfff9 /var
parenta9a59ea3b41cac6e8ed638e0cd23700c7e94a232 (diff)
downloadspack-e01817cb1571f0cbf0b8810adb7e4cd84f208176.tar.gz
spack-e01817cb1571f0cbf0b8810adb7e4cd84f208176.tar.bz2
spack-e01817cb1571f0cbf0b8810adb7e4cd84f208176.tar.xz
spack-e01817cb1571f0cbf0b8810adb7e4cd84f208176.zip
binutils: Add missing texinfo dependency (#15444)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/binutils/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py
index 1f4a675546..4a647e7e88 100644
--- a/var/spack/repos/builtin/packages/binutils/package.py
+++ b/var/spack/repos/builtin/packages/binutils/package.py
@@ -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")