From 690950e1b80a3b954f6d40f879acdbe066859fff Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 6 Apr 2010 20:45:07 +0300 Subject: [PATCH 1/2] Ticket #2134: configure.ac: add support for AM_SILENT_RULES Inspired by http://www.flameeyes.eu/autotools-mythbuster/automake/silent.html Conditionally enabling AM_SILENT_RULES if supported Signed-off-by: Sergei Trofimovich --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 6b553b685..364a52bfc 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,9 @@ AC_CONFIG_AUX_DIR(config) MC_VERSION AM_INIT_AUTOMAKE(mc, ${VERSION} ) +dnl enable silent rules by default (if yet) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE AC_CANONICAL_HOST From 5ed43370a77e53e5c61f1b5f62cd697b173aabc2 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Wed, 7 Apr 2010 10:04:26 +0200 Subject: [PATCH 2/2] Minor grammar/spelling issues. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 364a52bfc..c5e1dabaa 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR(config) MC_VERSION AM_INIT_AUTOMAKE(mc, ${VERSION} ) -dnl enable silent rules by default (if yet) +dnl Enable silent rules by default (if yes) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_CONFIG_HEADER(config.h)