[mpich2-commits] r4175 - mpich2/trunk/src/pm/hydra/launcher/mpiexec
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Tue Mar 24 04:31:43 CDT 2009
Author: balaji
Date: 2009-03-24 04:31:43 -0500 (Tue, 24 Mar 2009)
New Revision: 4175
Modified:
mpich2/trunk/src/pm/hydra/launcher/mpiexec/utils.c
Log:
The default environment setting had incorrectly gotten changed to NONE
in r4173. Reverting it here.
Modified: mpich2/trunk/src/pm/hydra/launcher/mpiexec/utils.c
===================================================================
--- mpich2/trunk/src/pm/hydra/launcher/mpiexec/utils.c 2009-03-24 09:30:21 UTC (rev 4174)
+++ mpich2/trunk/src/pm/hydra/launcher/mpiexec/utils.c 2009-03-24 09:31:43 UTC (rev 4175)
@@ -311,7 +311,7 @@
if (handle.prop == HYD_ENV_PROP_UNSET && tmp)
handle.prop = !strcmp(tmp, "all") ? HYD_ENV_PROP_ALL : HYD_ENV_PROP_NONE;
if (handle.prop == HYD_ENV_PROP_UNSET)
- handle.prop = HYD_ENV_PROP_NONE;
+ handle.prop = HYD_ENV_PROP_ALL;
/* Check if any individual app has an environment preference */
for (exec_info = handle.exec_info_list; exec_info; exec_info = exec_info->next) {
More information about the mpich2-commits
mailing list