From: Karel Zak Date: Tue, 13 Aug 2013 13:21:33 +0000 (+0200) Subject: build-sys: add support for silent buils X-Git-Tag: v3.3.9~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd1d13e1709a1d136098185889b4aa28fa0b255d;p=procps-ng 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 --- 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])