f96fa5ee2a
new Fortran revamp a few months ago) that failed when you compiled with "ifort -i8". The secret: "test $foo -eq 0" fails when $foo is sufficiently large. So instead, use "test "$foo" = "0"". expr does work with large integers, though, so one "test -lt" was replaced with expr. This commit was SVN r26715. The following Trac tickets were found above: Ticket 3146 --> https://svn.open-mpi.org/trac/ompi/ticket/3146