From 2491855678624dfe64dbc4d583b9897c1d27ab45 Mon Sep 17 00:00:00 2001 From: Ken Raffenetti Date: Mon, 12 Feb 2024 03:55:57 -0600 Subject: [PATCH] mpich: Fix +vci variant for newer releases (#42570) --with-ch4-max-vcis=default is no longer accepted by MPICH configure since the 4.1 release. Just omit the option from the +vci variant, since configure will select the default value in its absence. --- var/spack/repos/builtin/packages/mpich/package.py | 1 - 1 file changed, 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/mpich/package.py b/var/spack/repos/builtin/packages/mpich/package.py index 64757cee980..3398da3f5a3 100644 --- a/var/spack/repos/builtin/packages/mpich/package.py +++ b/var/spack/repos/builtin/packages/mpich/package.py @@ -620,7 +620,6 @@ def configure_args(self): if "+vci" in spec: config_args.append("--enable-thread-cs=per-vci") - config_args.append("--with-ch4-max-vcis=default") if "datatype-engine=yaksa" in spec: config_args.append("--with-datatype-engine=yaksa")