summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <suraia@ikkoku.de>2018-11-13 16:34:51 +0100
committerPeter Scheibel <scheibel1@llnl.gov>2018-11-13 09:34:51 -0600
commit66ef3c2b185df94f903d154e30babbc0943650fa (patch)
treefafccec9182c4dcab2d09339100449b0ea2e108c
parentf48820a71e6e55c80ab5da7169223a261749f336 (diff)
downloadspack-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.
-rw-r--r--var/spack/repos/builtin/packages/thrift/package.py1
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')