otf: Explicitly disable MPI and ZOIDFS (#26346)

Otherwise, global installations of MPI could be picked up by OTF.
This commit is contained in:
Michael Kuhn 2021-10-01 17:01:31 +02:00 committed by GitHub
parent ad8b8b3377
commit 12dc01318e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,9 @@ class Otf(AutotoolsPackage):
def configure_args(self):
args = []
args.append('--without-mpi')
args.append('--without-vtf3')
args.append('--with-zlib')
args.append('--with-zlibsymbols')
args.append('--without-zoidfs')
return args