summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSamuel Browne <sebrown@sandia.gov>2023-07-12 12:01:12 -0600
committerGitHub <noreply@github.com>2023-07-12 14:01:12 -0400
commit78b24b45f6b6ac36e84b95a53393065bfe94d633 (patch)
treefba94e034f2e3336c1030d334008c31bf3969ed7 /var
parentc2bafd7b7fc74d5672beaf79fd808c62900151f6 (diff)
downloadspack-78b24b45f6b6ac36e84b95a53393065bfe94d633.tar.gz
spack-78b24b45f6b6ac36e84b95a53393065bfe94d633.tar.bz2
spack-78b24b45f6b6ac36e84b95a53393065bfe94d633.tar.xz
spack-78b24b45f6b6ac36e84b95a53393065bfe94d633.zip
Add gettext as a dependency of bison (#35979)
The 'bison' executable requires libtextstyle to run. I think this was usually satisfied because gettext is often installed with the OS, or brought in accidentally via perl/m4. Looks like the libtextstyle library dependency started in Bison 3.4
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/bison/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bison/package.py b/var/spack/repos/builtin/packages/bison/package.py
index afb4086191..1ad363f747 100644
--- a/var/spack/repos/builtin/packages/bison/package.py
+++ b/var/spack/repos/builtin/packages/bison/package.py
@@ -53,6 +53,7 @@ class Bison(AutotoolsPackage, GNUMirrorPackage):
provides("yacc")
+ depends_on("gettext", when="@3.4:")
depends_on("diffutils", type="build")
depends_on("m4", type=("build", "run"))
depends_on("perl", type="build")