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 <[email protected]> --- 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], [[email protected]]) AM_INIT_AUTOMAKE([-Wno-portability]) +AM_SILENT_RULES([yes]) LT_PREREQ([2.2.6]) LT_INIT -- 1.8.1.4
