mrbayes: readline and mpi variants are mutually exclusive (#46021)

This commit is contained in:
Kacper Kornet
2024-08-26 12:38:57 +01:00
committed by GitHub
parent a5436b3962
commit 85939b26ae

View File

@@ -28,6 +28,8 @@ class Mrbayes(AutotoolsPackage):
"readline", default=False, description="Enable readline library, not recommended with MPI" "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("libbeagle", when="+beagle")
depends_on("mpi", when="+mpi") depends_on("mpi", when="+mpi")
depends_on("readline", when="+readline") depends_on("readline", when="+readline")