From b3ed4aca32f695021aa4669954bf38fa9488d759 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Tue, 1 Mar 2005 23:49:00 +0000 Subject: [PATCH] * yet another fix for my stupidity in shell scripting This commit was SVN r4625. --- config/ompi_config_threads.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/ompi_config_threads.m4 b/config/ompi_config_threads.m4 index 02e3b004be..3f906619fd 100644 --- a/config/ompi_config_threads.m4 +++ b/config/ompi_config_threads.m4 @@ -218,7 +218,7 @@ elif test "$enable_progress_threads" = "no" ; then enable_progress_threads="no" else # they want threaded progress - if "$THREAD_TYPE" != "none" ; then + if test "$THREAD_TYPE" != "none" ; then OMPI_ENABLE_PROGRESS_THREADS=1 enable_progress_threads="yes" else