confdb: fix syntax error in PAC_SET_MPI_TYPE

It is a syntax error when $3 is empty:
    if test -z "" -o = 0 ;
Esse commit está contido em:
Hui Zhou
2024-01-18 09:26:15 -06:00
commit d05af77b9b
+1 -1
Ver Arquivo
@@ -91,7 +91,7 @@ dnl Multiplier can be used to define double types
dnl e.g. PAC_SET_MPI_TYPE(48, MPI_COMPLEX, $pac_cv_f77_sizeof_real, 2)
dnl
AC_DEFUN([PAC_SET_MPI_TYPE], [
if test -z "$3" -o $3 = 0 ; then
if test -z "$3" -o "$3" = 0 ; then
$2=MPI_DATATYPE_NULL
F77_$2=MPI_DATATYPE_NULL
F08_$2=MPI_DATATYPE_NULL%MPI_VAL