Skip to content
Snippets Groups Projects
Commit 44b89474 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

arpack-ng needs an extra libtoolize to build.

parent 892b8f15
No related branches found
No related tags found
No related merge requests found
......@@ -41,10 +41,17 @@ class ArpackNg(Package):
depends_on('blas')
depends_on('lapack')
depends_on('automake')
depends_on('autoconf')
depends_on('libtool@2.4.2:')
depends_on('mpi', when='+mpi')
def install(self, spec, prefix):
# Apparently autotools are not bootstrapped
# TODO: switch to use the CMake build in the next version
# rather than bootstrapping.
which('libtoolize')()
bootstrap = Executable('./bootstrap')
options = ['--prefix=%s' % prefix]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment