diff options
author | plamborn <plamborn@lanl.gov> | 2020-02-29 06:25:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 14:25:21 +0100 |
commit | 01878076213d120e1d7ae84d5431e1ad3cc6603e (patch) | |
tree | d2ee12bf11a4a2cd0fb857832ebbd29adefffb66 | |
parent | 94c2e7e7b4a291d94daeff88fc6a8cc51893f127 (diff) | |
download | spack-01878076213d120e1d7ae84d5431e1ad3cc6603e.tar.gz spack-01878076213d120e1d7ae84d5431e1ad3cc6603e.tar.bz2 spack-01878076213d120e1d7ae84d5431e1ad3cc6603e.tar.xz spack-01878076213d120e1d7ae84d5431e1ad3cc6603e.zip |
libhio: specify use of external json (#15209)
libhio has been building it's own json. With this change, libhio will rely on the json installed by spack.
-rw-r--r-- | var/spack/repos/builtin/packages/libhio/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libhio/package.py b/var/spack/repos/builtin/packages/libhio/package.py index 42ef377a5a..dc044d0587 100644 --- a/var/spack/repos/builtin/packages/libhio/package.py +++ b/var/spack/repos/builtin/packages/libhio/package.py @@ -57,4 +57,6 @@ class Libhio(AutotoolsPackage): if '+hdf5' in spec: args.append('--with-hdf5={0}'.format(spec['hdf5'].prefix)) + args.append('--with-external-json={0}'.format(spec['json-c'].prefix)) + return args |