From 6e91297fa2418c78d5c7116d5987aa8d69efd2d1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 5 Dec 2016 16:02:55 -0500 Subject: [PATCH] enable silent build output by default Enable the automake feature to produce silent output by default. When compiling code, we now see things like: $ make CC addgrps.o CC age.o CC audit_help.o ... This can be disabled via configure's --disable-silent-rules or by passing V=1 to make. Custom output (like in the man subdirs) don't (yet) respect this feature. More work will be needed to clean those up. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 7e3f246d..652a2133 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,7 @@ AC_PREREQ([2.64]) AC_INIT([shadow], [4.4], [pkg-shadow-devel@lists.alioth.debian.org], [], [https://github.com/shadow-maint/shadow]) AM_INIT_AUTOMAKE([1.11 foreign dist-xz]) +AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS([config.h]) dnl Some hacks...