[MOAB-dev] r2735 - MOAB/trunk

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Fri Mar 20 13:44:04 CDT 2009


Author: kraftche
Date: 2009-03-20 13:44:04 -0500 (Fri, 20 Mar 2009)
New Revision: 2735

Modified:
   MOAB/trunk/configure.ac
Log:
replace AC_PROG_SET (autoconf 2.60 or newer) with AC_CHECK_PROG( SET,... )

Modified: MOAB/trunk/configure.ac
===================================================================
--- MOAB/trunk/configure.ac	2009-03-20 17:38:57 UTC (rev 2734)
+++ MOAB/trunk/configure.ac	2009-03-20 18:44:04 UTC (rev 2735)
@@ -6,8 +6,9 @@
 AC_CANONICAL_SYSTEM
 AM_INIT_AUTOMAKE
 
-AC_PROG_SED
+AC_CHECK_PROG( [SED], [sed], [sed], [true] )
 
+
 EXTRA_GNU_FLAGS='-Wall -pipe -pedantic'
 SNL_CHECK_COMPILERS
 AM_CONDITIONAL(PARALLEL,[test "x$WITH_MPI" != "xno"])



More information about the moab-dev mailing list