Skip to content

Commit cefbde8

Browse files
Joe-DownsJoseph Downs
authored andcommitted
WIP: fix typo in pympistd arg
Signed-off-by: Joseph Downs <joe.downs@lanl.gov>
1 parent e86186b commit cefbde8

File tree

6 files changed

+1072
-3363
lines changed

6 files changed

+1072
-3363
lines changed

config/ompi_configure_options.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,13 @@ AM_CONDITIONAL(OMPI_GENERATE_BINDINGS,[test "$PYTHON" != ":"])
266266
AC_MSG_CHECKING([if want to enable standard ABI library])
267267
AC_ARG_ENABLE([standard-abi],
268268
[AS_HELP_STRING([--enable-standard-abi],
269-
[Enable building the standard ABI library (default: disabled)])])
270-
if test "$enable_standard_abi" = "yes"; then
271-
AC_MSG_RESULT([yes])
272-
ompi_standard_abi=1
273-
else
269+
[Enable building the standard ABI library (default: enabled)])])
270+
if test "$enable_standard_abi" = "no"; then
274271
AC_MSG_RESULT([no])
275272
ompi_standard_abi=0
273+
else
274+
AC_MSG_RESULT([yes])
275+
ompi_standard_abi=1
276276
fi
277277
AC_DEFINE_UNQUOTED([OMPI_STANDARD_ABI],[$ompi_standard_abi],
278278
[Whether we want to build the standard ABI library])

0 commit comments

Comments
 (0)