Skip to content
Snippets Groups Projects
Commit d8f4e0a5 authored by Toyohisa Kameyama's avatar Toyohisa Kameyama Committed by Peter Scheibel
Browse files

OTF package: use autotools. (#11873)

parent ae8710fa
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
from spack import * from spack import *
class Otf(Package): class Otf(AutotoolsPackage):
"""To improve scalability for very large and massively parallel """To improve scalability for very large and massively parallel
traces the Open Trace Format (OTF) is developed at ZIH as a traces the Open Trace Format (OTF) is developed at ZIH as a
successor format to the Vampir Trace Format (VTF3).""" successor format to the Vampir Trace Format (VTF3)."""
...@@ -18,10 +18,10 @@ class Otf(Package): ...@@ -18,10 +18,10 @@ class Otf(Package):
depends_on('zlib') depends_on('zlib')
def install(self, spec, prefix): def configure_args(self):
configure('--prefix=%s' % prefix, args = []
'--without-vtf3',
'--with-zlib', args.append('--without-vtf3')
'--with-zlibsymbols') args.append('--with-zlib')
make() args.append('--with-zlibsymbols')
make("install") return args
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment