Skip to content
Snippets Groups Projects
Unverified Commit f2eb1c93 authored by Axel Huebl's avatar Axel Huebl
Browse files

ADIOS: Run Autotools First

parent 4bd86376
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,11 @@ class Adios(Package):
# module load cray-hdf5/1.8.14
# module load python/2.7.10
depends_on('autoconf')
depends_on('automake')
depends_on('libtool')
depends_on('python')
depends_on('mpi', when='+mpi')
# shipped within ADIOS 1.10.0+
depends_on('mxml', when='@:1.9.0')
......@@ -125,6 +130,9 @@ def install(self, spec, prefix):
if '+fortran' in spec:
extra_args.extend(["FC=gfortran"])
sh = which('sh')
sh('./autogen.sh')
configure("--prefix=%s" % prefix,
*extra_args)
make()
......
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