[MOAB-dev] r4085 - MOAB/trunk

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Thu Aug 12 12:47:21 CDT 2010


Author: kraftche
Date: 2010-08-12 12:47:20 -0500 (Thu, 12 Aug 2010)
New Revision: 4085

Modified:
   MOAB/trunk/configure.ac
Log:
Apparently automake doesn't ignore unrecognized options.  Use ugly hack
to enable new 1.11 options only when using automake 1.11.


Modified: MOAB/trunk/configure.ac
===================================================================
--- MOAB/trunk/configure.ac	2010-08-11 22:57:44 UTC (rev 4084)
+++ MOAB/trunk/configure.ac	2010-08-12 17:47:20 UTC (rev 4085)
@@ -6,7 +6,9 @@
 AC_CONFIG_MACRO_DIR([config])
 AC_CONFIG_AUX_DIR([config])
 AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE([silent-rules color-tests parallel-tests])
+m4_ifdef([AM_SILENT_RULES],
+ [AM_INIT_AUTOMAKE([silent-rules color-tests parallel-tests])],
+ [AM_INIT_AUTOMAKE])
 
 AC_CHECK_PROG( [SED], [sed], [sed], [true] )
 






































More information about the moab-dev mailing list