diff options
author | Richard Berger <rberger@lanl.gov> | 2024-08-15 12:28:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-15 11:28:21 -0700 |
commit | 7112a49d1e45e107236da73704478048c715caeb (patch) | |
tree | b686039ee79fe6e1e93b92033047982aa78c6a05 | |
parent | b11bd6b7453047fc33afbec1752abc476e6907d5 (diff) | |
download | spack-7112a49d1e45e107236da73704478048c715caeb.tar.gz spack-7112a49d1e45e107236da73704478048c715caeb.tar.bz2 spack-7112a49d1e45e107236da73704478048c715caeb.tar.xz spack-7112a49d1e45e107236da73704478048c715caeb.zip |
libmesh: explicitly disable metis in ~metis case (#45781)
-rw-r--r-- | var/spack/repos/builtin/packages/libmesh/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libmesh/package.py b/var/spack/repos/builtin/packages/libmesh/package.py index f7e1980d2d..53c41d9c33 100644 --- a/var/spack/repos/builtin/packages/libmesh/package.py +++ b/var/spack/repos/builtin/packages/libmesh/package.py @@ -261,6 +261,8 @@ class Libmesh(AutotoolsPackage): if "+petsc" in self.spec: options.append("--with-metis=PETSc") options.append("--with-parmetis=PETSc") + else: + options.append("--disable-metis") if "+petsc" in self.spec or "+slepc" in self.spec: options.append("--enable-petsc=yes") |