[mpich2-commits] r7890 - mpich2/trunk/src/pm/hydra
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Tue Feb 1 22:56:56 CST 2011
Author: balaji
Date: 2011-02-01 22:56:56 -0600 (Tue, 01 Feb 2011)
New Revision: 7890
Modified:
mpich2/trunk/src/pm/hydra/configure.in
Log:
Allow the "none" launcher to be picked through a configure time
rearrangement of bootstrap servers.
Modified: mpich2/trunk/src/pm/hydra/configure.in
===================================================================
--- mpich2/trunk/src/pm/hydra/configure.in 2011-02-02 00:40:34 UTC (rev 7889)
+++ mpich2/trunk/src/pm/hydra/configure.in 2011-02-02 04:56:56 UTC (rev 7890)
@@ -145,9 +145,9 @@
#########################################################################
AC_ARG_WITH(hydra-bss,
[AC_HELP_STRING([--with-hydra-bss=name],
- [Bootstrap Server (ssh,rsh,fork,slurm,ll,lsf,sge,pbs,persist)])],
+ [Bootstrap Server (ssh,rsh,fork,slurm,ll,lsf,sge,pbs,none,persist)])],
[ hydra_bss=$withval ],
- [ hydra_bss="ssh,rsh,fork,slurm,ll,lsf,sge,pbs,persist" ])
+ [ hydra_bss="ssh,rsh,fork,slurm,ll,lsf,sge,pbs,none,persist" ])
AC_MSG_CHECKING(bootstrap server)
AC_MSG_RESULT($hydra_bss)
hydra_bss_names="`echo $hydra_bss | sed -e 's/:/ /g' -e 's/,/ /g'`"
@@ -206,15 +206,14 @@
hydra_bss_pbs=true
available_rmks=`echo $available_rmks pbs`
;;
+ none)
+ available_launchers=`echo $available_launchers none`
+ ;;
*)
;;
esac
done
-## Enable the "none" launcher at the start, so it is not picked as the
-## launcher, unless nothing else is found
-available_launchers=`echo $available_launchers none`
-
## Bootstrap servers
if test "$hydra_bss_external" ; then
AM_CONDITIONAL([hydra_bss_external], [true])
More information about the mpich2-commits
mailing list