From fd1d13e1709a1d136098185889b4aa28fa0b255d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 13 Aug 2013 15:21:33 +0200 Subject: [PATCH] build-sys: add support for silent buils The automake AM_SILENT_RULES macro is supported since automake 1.11 (which is required for procps). The silent functionality is enabled by default, you can change it by: ./configure --disable-silent-rules or make V=1 Note that make still prints compiler errors, etc. Signed-off-by: Karel Zak --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index f520d256..5487bd42 100644 --- a/configure.ac +++ b/configure.ac @@ -7,6 +7,7 @@ AC_INIT([procps-ng], m4_esyscmd([misc/git-version-gen .tarball-version]), [procps@freelists.org],,[http://gitorious.org/procps]) AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability tar-pax no-dist-gzip dist-xz]) +AM_SILENT_RULES([yes]) AC_CONFIG_SRCDIR([free.c]) AC_CONFIG_HEADERS([config.h])