From 6da79da0a7fbc446401f6ffd65b637909d1c0026 Mon Sep 17 00:00:00 2001 From: KAWASHIMA Takahiro Date: Tue, 7 Feb 2017 11:08:42 +0900 Subject: [PATCH] pmix/pmix112: Enable PMIx shared memory dstore by default Signed-off-by: KAWASHIMA Takahiro --- opal/mca/pmix/pmix112/configure.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opal/mca/pmix/pmix112/configure.m4 b/opal/mca/pmix/pmix112/configure.m4 index 0f3b83c9e95..394bc440c82 100644 --- a/opal/mca/pmix/pmix112/configure.m4 +++ b/opal/mca/pmix/pmix112/configure.m4 @@ -41,9 +41,9 @@ AC_DEFUN([MCA_opal_pmix_pmix112_CONFIG],[ AC_ARG_ENABLE([pmix-dstore], [AC_HELP_STRING([--enable-pmix-dstore], - [Enable PMIx shared memory data store (default: disabled)])]) + [Enable PMIx shared memory data store (default: enabled)])]) AC_MSG_CHECKING([if PMIx shared memory data store is enabled]) - if test "$enable_pmix_dstore" = "yes"; then + if test "$enable_pmix_dstore" != "no"; then AC_MSG_RESULT([yes]) opal_pmix_pmix_sm_flag=--enable-dstore else