From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Whitehouse Date: Mon, 04 Mar 2013 15:13:39 +0000 Subject: [Cluster-devel] [PATCH] gfs2-utils build: Enable silent rules by default In-Reply-To: <1362409952-27366-1-git-send-email-anprice@redhat.com> References: <1362409952-27366-1-git-send-email-anprice@redhat.com> Message-ID: <1362410019.2684.32.camel@menhir> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, On Mon, 2013-03-04 at 15:12 +0000, Andrew Price wrote: > 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(+) > Sounds good, Steve. > 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 >