Skip to content

Commit 3e903aa

Browse files
committed
pmix/pmix112: Correct --enable-pmix-dstore option
The Open MPI `configure` option to enable PMIx shared meory dstore is now `--enable-pmix-dstore`, not `--enable-pmix3-dstore`. Without this fix, The `--disable-dstore` is always passed to PMIx `configure` regardless of the Open MPI `configure` option. And, change the comparison expression to match with master. Signed-off-by: KAWASHIMA Takahiro <[email protected]>
1 parent 8b16747 commit 3e903aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/mca/pmix/pmix112/configure.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ AC_DEFUN([MCA_opal_pmix_pmix112_CONFIG],[
4343
[AC_HELP_STRING([--enable-pmix-dstore],
4444
[Enable PMIx shared memory data store (default: disabled)])])
4545
AC_MSG_CHECKING([if PMIx shared memory data store is enabled])
46-
if test "$enable_pmix3_dstore" == "yes"; then
46+
if test "$enable_pmix_dstore" != "no"; then
4747
AC_MSG_RESULT([yes])
4848
opal_pmix_pmix_sm_flag=--enable-dstore
4949
else

0 commit comments

Comments
 (0)