From 8a3e44789d1cb5d0378abb25a6b01f8b5246a641 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 8 Jan 2004 15:34:14 +0000 Subject: [PATCH] Oops -- had "single library" logic backwards. This commit was SVN r120. --- config/lam_configure_options.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/lam_configure_options.m4 b/config/lam_configure_options.m4 index 670e35ec84..4a889364ab 100644 --- a/config/lam_configure_options.m4 +++ b/config/lam_configure_options.m4 @@ -88,10 +88,10 @@ AC_ARG_ENABLE(single-lib, [those who use the MPI wrapper compilers (mpicc, mpif77, etc.) do not care about this option. This option is *only* if you insist on using underlying compilers to compile MPI applications and only want to have -lmpi as your $LIBS) (default: disabled)])) if test "$enable_single_lib" != "yes"; then AC_MSG_RESULT([no]) - WANT_SINGLE_MPI_LIBRARY=1 + WANT_SINGLE_MPI_LIBRARY=0 else AC_MSG_RESULT([no]) - WANT_SINGLE_MPI_LIBRARY=0 + WANT_SINGLE_MPI_LIBRARY=1 fi AM_CONDITIONAL(WANT_SINGLE_MPI_LIBRARY, test "$WANT_SINGLE_MPI_LIBRARY" = 1)