From dc822de80f05977145b1b5e3e353e56cefe97e41 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 9 Oct 2013 14:04:25 +0000 Subject: [PATCH] Fix typo/misspelling in variable name. This commit was SVN r29410. --- config/oshmem_configure_options.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/oshmem_configure_options.m4 b/config/oshmem_configure_options.m4 index aa42d26b6f..29930c4c3b 100644 --- a/config/oshmem_configure_options.m4 +++ b/config/oshmem_configure_options.m4 @@ -72,12 +72,12 @@ AC_ARG_ENABLE(oshmem-profile, [enable OSHMEM profiling (default: enabled)])) if test "$enable_oshmem_profile" != "no"; then AC_MSG_RESULT([yes]) - oshmem_progiling_support=1 + oshmem_profiling_support=1 else AC_MSG_RESULT([no]) - oshmem_progiling_support=0 + oshmem_profiling_support=0 fi -AM_CONDITIONAL(OSHMEM_PROFILING, test "$oshmem_progiling_support" = 1) +AM_CONDITIONAL(OSHMEM_PROFILING, test "$oshmem_profiling_support" = 1) # Whether to build the OpenShmem fortran support or not For the # moment, use the same value as was derived from --enable-mpi-fortra.