From 2ce0faf770f0a7e98374f1acc54633bd89dc28ed Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Fri, 24 Sep 2010 22:34:53 +0000 Subject: [PATCH] No need to conditionally check for AM_SILENT_RULES anymore since we require >AM 1.11 This commit was SVN r23800. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c86117c791..c2f4f22f8e 100644 --- a/configure.ac +++ b/configure.ac @@ -84,8 +84,8 @@ OMPI_LOAD_PLATFORM # AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects no-define 1.10c silent-rules tar-ustar]) -# If Automake supports silent rules, enable them. -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +# We require >AM 1.11, so AM_SILENT_RULES will exist +AM_SILENT_RULES([yes]) # Make configure depend on the VERSION file, since it's used in AC_INIT AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/VERSION'])