diff options
author | Andreas Baumbach <healther@users.noreply.github.com> | 2021-05-19 19:38:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 10:38:25 -0700 |
commit | c666df5665fbed744759103719214bb0e83c3991 (patch) | |
tree | fdfac04a88f8334573c1506459a461b325dd4aac | |
parent | 608d453c0149f85d7b97c576c55960104b3e0e18 (diff) | |
download | spack-c666df5665fbed744759103719214bb0e83c3991.tar.gz spack-c666df5665fbed744759103719214bb0e83c3991.tar.bz2 spack-c666df5665fbed744759103719214bb0e83c3991.tar.xz spack-c666df5665fbed744759103719214bb0e83c3991.zip |
imagemagick: add missing pkg-config dependency (#23683)
-rw-r--r-- | var/spack/repos/builtin/packages/imagemagick/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/imagemagick/package.py b/var/spack/repos/builtin/packages/imagemagick/package.py index 7c60470dfc..1d22842fbd 100644 --- a/var/spack/repos/builtin/packages/imagemagick/package.py +++ b/var/spack/repos/builtin/packages/imagemagick/package.py @@ -29,6 +29,7 @@ class Imagemagick(AutotoolsPackage): depends_on('ghostscript') depends_on('ghostscript-fonts') depends_on('libsm') + depends_on('pkgconfig', type='build') def configure_args(self): spec = self.spec |