1
1

* Fix dumb test condition that was causing George pain

This commit was SVN r4624.
Этот коммит содержится в:
Brian Barrett 2005-03-01 23:31:00 +00:00
родитель 8116e71c16
Коммит 545a91729a

Просмотреть файл

@ -191,7 +191,7 @@ elif test "$enable_mpi_threads" = "no" ; then
OMPI_ENABLE_MPI_THREADS=0
else
# they want MPI threads. Make sure we have threads
if "$THREAD_TYPE" != "none" ; then
if test "$THREAD_TYPE" != "none" ; then
OMPI_ENABLE_MPI_THREADS=1
enable_mpi_threads="yes"
else