[mpich2-commits] r4127 - in mpich2/trunk/src/pm/hydra: . utils
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Wed Mar 18 23:03:31 CDT 2009
Author: balaji
Date: 2009-03-18 23:03:30 -0500 (Wed, 18 Mar 2009)
New Revision: 4127
Modified:
mpich2/trunk/src/pm/hydra/configure.in
mpich2/trunk/src/pm/hydra/utils/Makefile.sm
Log:
Fixed a small error in the configuration that was causing the process
binding part not to build even when explicitly configured to.
Modified: mpich2/trunk/src/pm/hydra/configure.in
===================================================================
--- mpich2/trunk/src/pm/hydra/configure.in 2009-03-19 02:19:26 UTC (rev 4126)
+++ mpich2/trunk/src/pm/hydra/configure.in 2009-03-19 04:03:30 UTC (rev 4127)
@@ -149,17 +149,17 @@
fi
dnl Process Binding
-AC_ARG_ENABLE(g, [ --enable-process-binding Process Binding],
- [ PROC_BINDING=$enableval ],
- [ PROC_BINDING=no ])
+AC_ARG_ENABLE(process-binding, [ --enable-process-binding Process Binding],
+ [ PROC_BINDING=$enableval ],
+ [ PROC_BINDING=no ])
AC_MSG_CHECKING(process binding)
AC_MSG_RESULT($PROC_BINDING)
if test "$PROC_BINDING" = "yes"; then
AC_DEFINE(PROC_BINDING,1,[Define if process binding is enabled])
plpa_makefile="utils/plpa/Makefile"
- all_utils="${all_utils} plpa"
+ opt_utils="${opt_utils} plpa"
fi
-AC_SUBST(all_utils)
+AC_SUBST(opt_utils)
dnl Check if __func__ is defined by the compiler
AC_MSG_CHECKING([whether the compiler allows __func__])
Modified: mpich2/trunk/src/pm/hydra/utils/Makefile.sm
===================================================================
--- mpich2/trunk/src/pm/hydra/utils/Makefile.sm 2009-03-19 02:19:26 UTC (rev 4126)
+++ mpich2/trunk/src/pm/hydra/utils/Makefile.sm 2009-03-19 04:03:30 UTC (rev 4127)
@@ -4,5 +4,5 @@
# See COPYRIGHT in top-level directory.
#
-SUBDIRS_all_utils = args dbg env launch signals sock string timer plpa .
-SUBDIRS = args dbg env launch signals sock string timer @all_utils@
\ No newline at end of file
+SUBDIRS_opt_utils = plpa .
+SUBDIRS = args dbg env launch signals sock string timer @opt_utils@
More information about the mpich2-commits
mailing list