[mpich2-commits] r5572 - mpich2/trunk/confdb
goodell at mcs.anl.gov
goodell at mcs.anl.gov
Mon Oct 26 14:06:58 CDT 2009
Author: goodell
Date: 2009-10-26 14:06:58 -0500 (Mon, 26 Oct 2009)
New Revision: 5572
Modified:
mpich2/trunk/confdb/aclocal_config.m4
Log:
Use AC_MSG_NOTICE in PAC_CONFIG_SUBDIR.
This way the message will also end up in the upper level config.log and
not just on the standard output. It will also respect "./configure
--quiet" and similar options.
No reviewer.
Modified: mpich2/trunk/confdb/aclocal_config.m4
===================================================================
--- mpich2/trunk/confdb/aclocal_config.m4 2009-10-26 18:53:04 UTC (rev 5571)
+++ mpich2/trunk/confdb/aclocal_config.m4 2009-10-26 19:06:58 UTC (rev 5572)
@@ -1,8 +1,7 @@
dnl Sandbox configure
dnl Usage: PAC_CONFIG_SUBDIR(subdir,abs_srcdir,config_args,action-if-success,action-if-failure)
AC_DEFUN([PAC_CONFIG_SUBDIR],[
- echo
- echo "===== configuring $1 ====="
+ AC_MSG_NOTICE([===== configuring $1 =====])
PAC_MKDIRS($1)
pac_subconfig_args=""
@@ -37,6 +36,5 @@
:
fi
- echo "===== done with $1 configure ====="
- echo
-])
\ No newline at end of file
+ AC_MSG_NOTICE([===== done with $1 configure =====])
+])
More information about the mpich2-commits
mailing list