The last of the Alpha fixes. The Alpha sh shell's builtin test doesn't
like == that much... Refs trac:380 This commit was SVN r11860. The following Trac tickets were found above: Ticket 380 --> https://svn.open-mpi.org/trac/ompi/ticket/380
Этот коммит содержится в:
родитель
4d7f221f86
Коммит
bc9c6d65c6
1
NEWS
1
NEWS
@ -33,6 +33,7 @@ version 1.0.
|
||||
1.2
|
||||
---
|
||||
|
||||
- A number of fixes for Alpha platforms.
|
||||
- A variety of Fortran API fixes.
|
||||
- Build the Fortran MPI API as a separate library to allow these
|
||||
functions to be profiled properly.
|
||||
|
@ -365,7 +365,7 @@ AC_MSG_CHECKING([if peruse support is required])
|
||||
AC_ARG_ENABLE(peruse,
|
||||
AC_HELP_STRING([--enable-peruse],
|
||||
[Support PERUSE interface (default: disabled)]))
|
||||
if test "$enable_peruse" == "yes"; then
|
||||
if test "$enable_peruse" = "yes"; then
|
||||
AC_MSG_RESULT([yes])
|
||||
WANT_PERUSE=1
|
||||
else
|
||||
|
@ -41,7 +41,7 @@ AC_DEFUN([OMPI_FIND_TYPE],[
|
||||
[AS_VAR_SET(type_var, "not found")],
|
||||
[AS_VAR_SET(type_var, "$oft_real_type")])])
|
||||
|
||||
AS_IF([test "AS_VAR_GET(type_var)" == "not found"],
|
||||
AS_IF([test "AS_VAR_GET(type_var)" = "not found"],
|
||||
[AC_MSG_WARN([*** Did not find corresponding C type])
|
||||
AS_IF([test "$oft_abort_on_fail" != "no"],
|
||||
[AC_MSG_ERROR([Cannot continue])])])
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user