Skip to content
Snippets Groups Projects
Commit b3a384e1 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Merge pull request #680 from davydden/hypre_muparser_fixes

minor fixes to hypre and muparser on Linux
parents a05bea7d 63c3feb7
Branches
Tags
No related merge requests found
...@@ -42,6 +42,9 @@ def install(self, spec, prefix): ...@@ -42,6 +42,9 @@ def install(self, spec, prefix):
if '~internal-superlu' in self.spec: if '~internal-superlu' in self.spec:
configure_args.append("--without-superlu") configure_args.append("--without-superlu")
# MLI and FEI do not build without superlu on Linux
configure_args.append("--without-mli")
configure_args.append("--without-fei")
# Hypre's source is staged under ./src so we'll have to manually # Hypre's source is staged under ./src so we'll have to manually
# cd into it. # cd into it.
......
...@@ -14,5 +14,5 @@ def install(self, spec, prefix): ...@@ -14,5 +14,5 @@ def install(self, spec, prefix):
configure(*options) configure(*options)
make() make(parallel=False)
make("install") make("install")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment