diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-09-09 20:01:49 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-09-09 20:01:49 (GMT) |
commit | 85ebef607feb03b8e33deca2dce09a378a67963b (patch) | |
tree | 08d1054730c23db81e468bde06d1cb1b76e67ce6 /fortran/configure | |
parent | 0b99dd414c19b5dc63305253d08d1059d9c3a9f2 (diff) | |
download | hdf5-85ebef607feb03b8e33deca2dce09a378a67963b.zip hdf5-85ebef607feb03b8e33deca2dce09a378a67963b.tar.gz hdf5-85ebef607feb03b8e33deca2dce09a378a67963b.tar.bz2 |
[svn-r5913] Purpose:
Bug Fix
Description:
We were getting the wrong MPIRUN program when you used the full
pathname. The "case" statement was checking the "F9X" macro, but it
really only needed the basename of the F9X macro.
Solution:
Put wildcard matching in so that it would find the appropriate
basename.
Platforms tested:
Modi4
Diffstat (limited to 'fortran/configure')
-rwxr-xr-x | fortran/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/configure b/fortran/configure index af19f95..bb32a65 100755 --- a/fortran/configure +++ b/fortran/configure @@ -8081,7 +8081,7 @@ cross_compiling=$ac_cv_prog_f9x_cross case "$F9X" in - mpif90) + *mpif90*) PARALLEL=mpif90 echo "$as_me:$LINENO: checking for mpirun" >&5 echo $ECHO_N "checking for mpirun... $ECHO_C" >&6 @@ -8111,7 +8111,7 @@ echo "${ECHO_T}none" >&6 fi ;; - mpxlf | mpxlf_r | mpxlf90 | mpxlf90_r | mpxlf95 | mpxlf95_r) + *mpxlf* | *mpxlf_r* | *mpxlf90* | *mpxlf90_r* | *mpxlf95* | *mpxlf95_r*) PARALLEL="$F9X" ;; |