From f52d3b26c37440a65ba4d4a2eaf6551dac71c5e9 Mon Sep 17 00:00:00 2001 From: Cameron Smith Date: Thu, 18 Jul 2024 13:04:57 -0400 Subject: [PATCH] pumi: language dependencies (#45301) Signed-off-by: Cameron Smith --- var/spack/repos/builtin/packages/pumi/package.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/var/spack/repos/builtin/packages/pumi/package.py b/var/spack/repos/builtin/packages/pumi/package.py index 4ccfcadf253..7ed691a211c 100644 --- a/var/spack/repos/builtin/packages/pumi/package.py +++ b/var/spack/repos/builtin/packages/pumi/package.py @@ -65,6 +65,10 @@ class Pumi(CMakePackage): "Disable the check for testing new versions.", ) + depends_on("cxx", type="build") + depends_on("c", type="build") + depends_on("fortran", type="build", when="+fortran") + depends_on("mpi") depends_on("cmake@3:", type="build") depends_on("zoltan", when="+zoltan")