diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2020-01-24 20:05:50 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-01-24 18:05:50 -0800 |
commit | 80745128b3b4a48356617d4a100003ec22dcf1ed (patch) | |
tree | 843dc48956c9e6e5ae4d69885990bc83bf61a094 | |
parent | dcd8d7a620ad247daf0da771ea22859f9e651ca6 (diff) | |
download | spack-80745128b3b4a48356617d4a100003ec22dcf1ed.tar.gz spack-80745128b3b4a48356617d4a100003ec22dcf1ed.tar.bz2 spack-80745128b3b4a48356617d4a100003ec22dcf1ed.tar.xz spack-80745128b3b4a48356617d4a100003ec22dcf1ed.zip |
harfbuzz package: add conflict for @2.3.1: with intel compiler (#14386)
harfbuzz 2.3.1 (and presumably all future versions after it) does
not build with the Intel compiler
-rw-r--r-- | var/spack/repos/builtin/packages/harfbuzz/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/harfbuzz/package.py b/var/spack/repos/builtin/packages/harfbuzz/package.py index 450432c946..4ab6005dbf 100644 --- a/var/spack/repos/builtin/packages/harfbuzz/package.py +++ b/var/spack/repos/builtin/packages/harfbuzz/package.py @@ -27,6 +27,9 @@ class Harfbuzz(AutotoolsPackage): depends_on("zlib") depends_on("graphite2", when='+graphite2') + conflicts('%intel', when='@2.3.1:', + msg='harfbuzz-2.3.1 does not build with the Intel compiler') + def configure_args(self): args = [] # disable building of gtk-doc files following #9771 |