Index: Makefile.in =================================================================== RCS file: /MPIhome/mpich/Makefile.in,v retrieving revision 1.176 retrieving revision 1.178 diff -r1.176 -r1.178 29c29 < VERSION = 1.2.2 --- > VERSION = 1.2.4 100a101,107 > # The occasional "sleep 1" is used to work around a bug in make (!); > # this bug is related to the use of time-stamps in make, but is actually > # more subtle; the logic in many implementations of make (including gnumake) > # is not consistent with respect to the tests performed. This can lead > # one test deciding to build a file but another step to decide not to > # include it in the subsequent step that is supposed to include everything > # that was just built! 104c111 < echo "Making Fortran interface" ; \ --- > echo "Making Fortran interface" ; sleep 1 ; \ 119c126 < echo "making Fortran 90 module for MPI" ; \ --- > echo "making Fortran 90 module for MPI" ; sleep 1 ; \ 143c150 < export MAKE ; export srcdir ; \ --- > MAKE="${MAKE}" ; export MAKE ; export srcdir ; \ 149c156 < export MAKE ; export srcdir ; \ --- > MAKE="${MAKE}" ; export MAKE ; export srcdir ; \ .