summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndrew W Elble <aweits@rit.edu>2020-11-05 10:26:26 -0500
committerGitHub <noreply@github.com>2020-11-05 16:26:26 +0100
commit9908e7a5906219a9d775f855c7075d2e6ee41424 (patch)
tree75e327c3cfdd0a9ec201cbb2e1b53ae542bd5cce /var
parentd7335185e3e2d26b6596b8f74b49f5697d802aff (diff)
downloadspack-9908e7a5906219a9d775f855c7075d2e6ee41424.tar.gz
spack-9908e7a5906219a9d775f855c7075d2e6ee41424.tar.bz2
spack-9908e7a5906219a9d775f855c7075d2e6ee41424.tar.xz
spack-9908e7a5906219a9d775f855c7075d2e6ee41424.zip
pfunit: fix conflict directive (missing '+') (#19750)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/pfunit/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/pfunit/package.py b/var/spack/repos/builtin/packages/pfunit/package.py
index 3c6f8576b7..65d8b67365 100644
--- a/var/spack/repos/builtin/packages/pfunit/package.py
+++ b/var/spack/repos/builtin/packages/pfunit/package.py
@@ -45,7 +45,7 @@ class Pfunit(CMakePackage):
'not support the Fortran 2008 features required by new pFUnit.')
# See https://github.com/Goddard-Fortran-Ecosystem/pFUnit/pull/179
conflicts("+shared", when="@4.0.0:")
- conflicts("use_comm_world", when="~mpi")
+ conflicts("+use_comm_world", when="~mpi")
conflicts('+mpi', when='@:3.99.99 %gcc@10.0.0:')
patch("mpi-test.patch", when="@:3.99.99 +use_comm_world")