diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2020-07-21 02:12:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 08:12:36 +0200 |
commit | c6891376f4321c42fb6bc5292696381edb2529c5 (patch) | |
tree | 59e4f5704a5e879a70f33abf372fc9212e730384 /var | |
parent | 83b281f36b911f112c5fa5dd4062ea3fb48f7270 (diff) | |
download | spack-c6891376f4321c42fb6bc5292696381edb2529c5.tar.gz spack-c6891376f4321c42fb6bc5292696381edb2529c5.tar.bz2 spack-c6891376f4321c42fb6bc5292696381edb2529c5.tar.xz spack-c6891376f4321c42fb6bc5292696381edb2529c5.zip |
qt4: add missing libSM dependency (#17611)
See https://github.com/spack/spack/issues/15082 and
https://github.com/spack/spack/pull/16226
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/qt/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/qt/package.py b/var/spack/repos/builtin/packages/qt/package.py index 7e016846ab..0aa6e9c7c5 100644 --- a/var/spack/repos/builtin/packages/qt/package.py +++ b/var/spack/repos/builtin/packages/qt/package.py @@ -158,6 +158,7 @@ class Qt(Package): # Non-macOS dependencies and special macOS constraints if MACOS_VERSION is None: depends_on("fontconfig", when='freetype=spack') + depends_on("libsm") depends_on("libx11") depends_on("libxcb") depends_on("libxkbcommon") |