diff options
author | Alec Scott <hi@alecbcs.com> | 2024-07-16 23:45:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 23:45:13 -0600 |
commit | 89c0b4accf0655d280f6c84a332cc95a03e90aef (patch) | |
tree | bd9b076b90d7db10807df35a5c9362a4f3146f19 | |
parent | 8e5b51395a40ab1dcd54d884db8f5a8e8cd7fe32 (diff) | |
download | spack-89c0b4accf0655d280f6c84a332cc95a03e90aef.tar.gz spack-89c0b4accf0655d280f6c84a332cc95a03e90aef.tar.bz2 spack-89c0b4accf0655d280f6c84a332cc95a03e90aef.tar.xz spack-89c0b4accf0655d280f6c84a332cc95a03e90aef.zip |
libgcrypt: conflict with darwin when @1.11.0 (#45264)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/libgcrypt/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libgcrypt/package.py b/var/spack/repos/builtin/packages/libgcrypt/package.py index 1f2ad2f7c7..5578d4f14c 100644 --- a/var/spack/repos/builtin/packages/libgcrypt/package.py +++ b/var/spack/repos/builtin/packages/libgcrypt/package.py @@ -41,6 +41,9 @@ class Libgcrypt(AutotoolsPackage): depends_on("libgpg-error@1.27:", when="@1.9:") depends_on("libgpg-error@1.49:", when="@1.11:") + # See https://dev.gnupg.org/T7170 + conflicts("platform=darwin", when="@1.11.0") + def flag_handler(self, name, flags): # We should not inject optimization flags through the wrapper, because # the jitter entropy code should never be compiled with optimization |