Skip to content

Commit b03288c

Browse files
authored
Merge pull request #2932 from kawashima-fj/pr/v2.x/enable-pmix-dstore
pmix/pmix112: Enable PMIx shared memory dstore by default
2 parents c24ba53 + 6da79da commit b03288c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opal/mca/pmix/pmix112/configure.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ AC_DEFUN([MCA_opal_pmix_pmix112_CONFIG],[
4141

4242
AC_ARG_ENABLE([pmix-dstore],
4343
[AC_HELP_STRING([--enable-pmix-dstore],
44-
[Enable PMIx shared memory data store (default: disabled)])])
44+
[Enable PMIx shared memory data store (default: enabled)])])
4545
AC_MSG_CHECKING([if PMIx shared memory data store is enabled])
46-
if test "$enable_pmix_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)