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

View File

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