diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-03-04 13:16:42 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2020-03-20 11:41:59 -0700 |
commit | cc8d9eee8ec7fe60235b00d52170f717c703dc0b (patch) | |
tree | 0a49f7453470292f3dcb25676e2556453a2d422e /var | |
parent | 1c8f792bb5e3fd96d2cfb341d988e42923956f3f (diff) | |
download | spack-cc8d9eee8ec7fe60235b00d52170f717c703dc0b.tar.gz spack-cc8d9eee8ec7fe60235b00d52170f717c703dc0b.tar.bz2 spack-cc8d9eee8ec7fe60235b00d52170f717c703dc0b.tar.xz spack-cc8d9eee8ec7fe60235b00d52170f717c703dc0b.zip |
suite-sparse: fix installation for v5.X (#15326)
fixes #15184
GraphBLAS depends on m4 according to CMake error message
Do not use INSTALL= when compiling the library
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/suite-sparse/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/suite-sparse/package.py b/var/spack/repos/builtin/packages/suite-sparse/package.py index 10f99dfbb6..0e6a27f1dd 100644 --- a/var/spack/repos/builtin/packages/suite-sparse/package.py +++ b/var/spack/repos/builtin/packages/suite-sparse/package.py @@ -33,6 +33,7 @@ class SuiteSparse(Package): depends_on('blas') depends_on('lapack') + depends_on('m4', type='build', when='@5.0.0:') depends_on('cmake', when='@5.2.0:', type='build') depends_on('metis@5.1.0', when='@4.5.1:') @@ -63,7 +64,6 @@ class SuiteSparse(Package): pic_flag = self.compiler.pic_flag if '+pic' in spec else '' make_args = [ - 'INSTALL=%s' % prefix, # By default, the Makefile uses the Intel compilers if # they are found. The AUTOCC flag disables this behavior, # forcing it to use Spack's compiler wrappers. @@ -134,6 +134,7 @@ class SuiteSparse(Package): self.spec.version <= Version('5.6.0')): make('default', *make_args) + make_args.append('INSTALL=%s' % prefix) make('install', *make_args) @property |