From 757d85b99e305600e6366cf1d440eee6fad4373e Mon Sep 17 00:00:00 2001 From: KAWASHIMA Takahiro Date: Fri, 27 Jan 2017 16:40:23 +0900 Subject: [PATCH] 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, == is bash extention. The default is still `--disable-pmix-dstore`. Signed-off-by: KAWASHIMA Takahiro --- opal/mca/pmix/pmix112/configure.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/mca/pmix/pmix112/configure.m4 b/opal/mca/pmix/pmix112/configure.m4 index b2ea209dd53..0f3b83c9e95 100644 --- a/opal/mca/pmix/pmix112/configure.m4 +++ b/opal/mca/pmix/pmix112/configure.m4 @@ -43,7 +43,7 @@ AC_DEFUN([MCA_opal_pmix_pmix112_CONFIG],[ [AC_HELP_STRING([--enable-pmix-dstore], [Enable PMIx shared memory data store (default: disabled)])]) AC_MSG_CHECKING([if PMIx shared memory data store is enabled]) - if test "$enable_pmix3_dstore" == "yes"; then + if test "$enable_pmix_dstore" = "yes"; then AC_MSG_RESULT([yes]) opal_pmix_pmix_sm_flag=--enable-dstore else