diff options
author | Michael Kuhn <suraia@ikkoku.de> | 2018-11-13 16:34:51 +0100 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-11-13 09:34:51 -0600 |
commit | 66ef3c2b185df94f903d154e30babbc0943650fa (patch) | |
tree | fafccec9182c4dcab2d09339100449b0ea2e108c /var | |
parent | f48820a71e6e55c80ab5da7169223a261749f336 (diff) | |
download | spack-66ef3c2b185df94f903d154e30babbc0943650fa.tar.gz spack-66ef3c2b185df94f903d154e30babbc0943650fa.tar.bz2 spack-66ef3c2b185df94f903d154e30babbc0943650fa.tar.xz spack-66ef3c2b185df94f903d154e30babbc0943650fa.zip |
thrift: add missing pkgconfig dependency (#9834)
Without pkgconfig, Spack's openssl cannot be found.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/thrift/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/thrift/package.py b/var/spack/repos/builtin/packages/thrift/package.py index 35d3a897e9..1bc81875b6 100644 --- a/var/spack/repos/builtin/packages/thrift/package.py +++ b/var/spack/repos/builtin/packages/thrift/package.py @@ -32,6 +32,7 @@ class Thrift(Package): variant('python', default=True, description="Build support for python") + depends_on('pkgconfig', type='build') depends_on('java') depends_on('autoconf', type='build') depends_on('automake', type='build') |