diff options
author | Kacper Kornet <kk562@cam.ac.uk> | 2024-08-26 12:38:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 13:38:57 +0200 |
commit | 85939b26ae8e5af813361518110adfe6579c1587 (patch) | |
tree | eb8bc115a14c71571012608ab28ad336bd1bb375 | |
parent | a5436b39626a7de74bf6656ad58d41963e28236c (diff) | |
download | spack-85939b26ae8e5af813361518110adfe6579c1587.tar.gz spack-85939b26ae8e5af813361518110adfe6579c1587.tar.bz2 spack-85939b26ae8e5af813361518110adfe6579c1587.tar.xz spack-85939b26ae8e5af813361518110adfe6579c1587.zip |
mrbayes: readline and mpi variants are mutually exclusive (#46021)
-rw-r--r-- | var/spack/repos/builtin/packages/mrbayes/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mrbayes/package.py b/var/spack/repos/builtin/packages/mrbayes/package.py index 4525c1c5b3..f658222ac3 100644 --- a/var/spack/repos/builtin/packages/mrbayes/package.py +++ b/var/spack/repos/builtin/packages/mrbayes/package.py @@ -28,6 +28,8 @@ class Mrbayes(AutotoolsPackage): "readline", default=False, description="Enable readline library, not recommended with MPI" ) + conflicts("+readline", when="+mpi", msg="MPI and readline support are exclusive") + depends_on("libbeagle", when="+beagle") depends_on("mpi", when="+mpi") depends_on("readline", when="+readline") |