diff options
author | Dom Heinzeller <dom.heinzeller@icloud.com> | 2024-12-05 10:14:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-05 18:14:57 +0100 |
commit | 901cea7a54afac0c5258bd513f174be2a9452538 (patch) | |
tree | 175b6b88d24d44181727c09d3a731ac3ffdde9b4 /var | |
parent | c1b2ac549d8ba6832e40146e866ab3298c74d579 (diff) | |
download | spack-901cea7a54afac0c5258bd513f174be2a9452538.tar.gz spack-901cea7a54afac0c5258bd513f174be2a9452538.tar.bz2 spack-901cea7a54afac0c5258bd513f174be2a9452538.tar.xz spack-901cea7a54afac0c5258bd513f174be2a9452538.zip |
Add conflict for pixman with Intel Classic (#47922)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/pixman/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pixman/package.py b/var/spack/repos/builtin/packages/pixman/package.py index 638496d50f..d4323eb469 100644 --- a/var/spack/repos/builtin/packages/pixman/package.py +++ b/var/spack/repos/builtin/packages/pixman/package.py @@ -35,6 +35,9 @@ class Pixman(AutotoolsPackage, MesonPackage): default="meson", ) + # https://github.com/spack/spack/issues/47917 + conflicts("%intel") + depends_on("c", type="build") with when("build_system=meson"): depends_on("meson@0.52:", type="build") |