From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Price Date: Mon, 4 Mar 2013 15:12:32 +0000 Subject: [Cluster-devel] [PATCH] gfs2-utils build: Enable silent rules by default Message-ID: <1362409952-27366-1-git-send-email-anprice@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit This one-liner turns on automake's silent-rules option by default so that, instead of the whole build commands being printed, we get neat output like so: CC fsck_gfs2-rgrepair.o CC fsck_gfs2-util.o CCLD fsck.gfs2 This is intended to allow us to spot warnings more easily. The original behaviour can be turned back on at configure-time with './configure --disable-silent-rules' or at build time with 'make V=1' Signed-off-by: Andrew Price --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 3ba3b9b..b24fc86 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,7 @@ AC_PREREQ([2.63]) AC_INIT([gfs2-utils], [master], [linux-cluster at redhat.com]) AM_INIT_AUTOMAKE([-Wno-portability]) +AM_SILENT_RULES([yes]) LT_PREREQ([2.2.6]) LT_INIT -- 1.8.1.4