[mpich2-commits] r8024 - mpich2/trunk

goodell at mcs.anl.gov goodell at mcs.anl.gov
Wed Feb 23 12:38:55 CST 2011


Author: goodell
Date: 2011-02-23 12:38:55 -0600 (Wed, 23 Feb 2011)
New Revision: 8024

Modified:
   mpich2/trunk/configure.in
Log:
"--enable-fast --disable-error-checking" are valid together (tt#1433)

Thanks to Joe Ratterman for reporting the bug and identifying the source
of the problem.

No reviewer.

Modified: mpich2/trunk/configure.in
===================================================================
--- mpich2/trunk/configure.in	2011-02-23 18:38:53 UTC (rev 8023)
+++ mpich2/trunk/configure.in	2011-02-23 18:38:55 UTC (rev 8024)
@@ -765,7 +765,7 @@
 # We must do enable-fast first, because it changes the other enable values
 if test "$enable_fast_nochkmsg" = "yes" ; then
     # 
-    if test "$enable_error_checking" != "default" ; then
+    if test "$enable_error_checking" != "default" -a "$enable_error_checking" != "no" ; then
         AC_MSG_ERROR([enable-fast overrides enable-error-checking; error-checking option $enable_error_checking ignored])
     fi
     enable_error_checking=no



More information about the mpich2-commits mailing list