diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-04-16 23:06:30 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-04-16 23:06:30 (GMT) |
commit | 4d16aa5ab78589e0e09dcd3072a06b3681bf7d54 (patch) | |
tree | 0a2a86fda50ec73e8913c0ec25b399ac05abd9c0 /configure.in | |
parent | 98d0d59f9c21f0814c1a80757d1ababc39b4b09d (diff) | |
download | hdf5-4d16aa5ab78589e0e09dcd3072a06b3681bf7d54.zip hdf5-4d16aa5ab78589e0e09dcd3072a06b3681bf7d54.tar.gz hdf5-4d16aa5ab78589e0e09dcd3072a06b3681bf7d54.tar.bz2 |
[svn-r350] RUNTEST was hardcoded to "mpirun -np 1" due to some historical SGI
implementation. Changed it to take a user supplied value during
configuration call.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e976474..e5b6bb5 100644 --- a/configure.in +++ b/configure.in @@ -265,9 +265,9 @@ case "X-$PARALLEL" in PARALLEL_SRC='$(PARALLEL_SRC)' CPPFLAGS="$CPPFLAGS $MPI_INC" CFLAGS="$CFLAGS $MPI_LIB" + RUNTEST="$RUNTEST" AC_CHECK_LIB(mpi,main) dnl Replace `main' with some function AC_CHECK_LIB(mpio,main) dnl Replace `main' with some function - RUNTEST='mpirun -np 1' ;; *) |