diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-05-22 03:33:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 19:33:29 -0600 |
commit | bda1d94d495924a117597a81bbf9863c2bedd97e (patch) | |
tree | f22614e1df15f9afda4ec9628b70e1a7222fd540 | |
parent | 3f472039c55cd7a5d73fb0b0bf63317669733e8a (diff) | |
download | spack-bda1d94d495924a117597a81bbf9863c2bedd97e.tar.gz spack-bda1d94d495924a117597a81bbf9863c2bedd97e.tar.bz2 spack-bda1d94d495924a117597a81bbf9863c2bedd97e.tar.xz spack-bda1d94d495924a117597a81bbf9863c2bedd97e.zip |
bison: add missing diffutils build dep (#44296)
-rw-r--r-- | var/spack/repos/builtin/packages/bison/package.py | 1 |
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 709e890567..e3305d7a8f 100644 --- a/var/spack/repos/builtin/packages/bison/package.py +++ b/var/spack/repos/builtin/packages/bison/package.py @@ -59,6 +59,7 @@ class Bison(AutotoolsPackage, GNUMirrorPackage): depends_on("gettext", when="+color") depends_on("m4@1.4.6:", type=("build", "run")) + depends_on("diffutils", type="build") patch("pgi.patch", when="@3.0.4") # The NVIDIA compilers do not currently support some GNU builtins. |