From 7566dc228cd5ae8fefafc6d7ec47b8b57596477e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Mon, 29 Nov 2010 20:51:08 +0100 Subject: [PATCH] configure: Support silent build rules Disable by either passing --disable-silent-rules to configure or passing V=1 to make --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 5fd5c80..ffbd37b 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,11 @@ AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([-Wno-portability]) +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + dnl ========================================================================== dnl dnl If you add a version number here, you *must* add an AC_SUBST line for -- 2.7.4