minor fixes to hypre and muparser on Linux

This commit is contained in:
Denis Davydov 2016-03-29 09:41:57 +02:00
parent 7e7461e8fb
commit 63c3feb79e
2 changed files with 4 additions and 1 deletions

View file

@ -42,6 +42,9 @@ def install(self, spec, prefix):
if '~internal-superlu' in self.spec:
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
# cd into it.

View file

@ -14,5 +14,5 @@ def install(self, spec, prefix):
configure(*options)
make()
make(parallel=False)
make("install")