summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-31 13:04:30 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-31 13:04:30 (GMT)
commit4faca62679ef0850794934b31a091c1f079aca0c (patch)
tree6ba260a8b6e64f5f6e16f469bbcd04b85a13fdf2 /configure.ac
parenta3faa926536712804fd079b65bf233458f2abac7 (diff)
downloadhdf5-4faca62679ef0850794934b31a091c1f079aca0c.zip
hdf5-4faca62679ef0850794934b31a091c1f079aca0c.tar.gz
hdf5-4faca62679ef0850794934b31a091c1f079aca0c.tar.bz2
Eliminated the need for a separate script variable.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 89adcae..9b890fd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -841,13 +841,9 @@ fi
## command). The value of this variable is
## substituted in *.in files.
##
-## RUNPARALLELSCRIPT -- Identical to RUNPARALLEL but without
-## the special makefile protection for environment
-## variables.
AC_SUBST([PARALLEL])
AC_SUBST([RUNSERIAL])
AC_SUBST([RUNPARALLEL])
-AC_SUBST([RUNPARALLELSCRIPT])
AC_SUBST([TESTPARALLEL])
## ----------------------------------------------------------------------
@@ -2481,10 +2477,9 @@ case "X-$enable_parallel" in
PAC_PROG_FC_MPI_CHECK
fi
- ## Set RUNPARALLEL and RUNPARALLELSCRIPT to mpiexec if not set yet.
+ ## Set RUNPARALLEL to mpiexec if not set yet.
if test "X$PARALLEL" = "Xyes" -a -z "$RUNPARALLEL"; then
RUNPARALLEL="mpiexec -n \$\${NPROCS:=6}"
- RUNPARALLELSCRIPT="mpiexec -n ${NPROCS:=6}"
fi
;;