From: David Lamparter Date: Tue, 10 Feb 2015 10:39:39 +0000 (+0100) Subject: build: enable AM_SILENT_RULES X-Git-Tag: frr-2.0-rc1~762 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e54583ead11faeb6739ed410f174a99cb4062ed3;p=mirror%2Ffrr.git build: enable AM_SILENT_RULES This shuts up make by default (can be reversed with "make V=1" or --disable-silent-rules). This is useful since warnings and error messages become more visible with less noise. Tested on Linux with GNU make and FreeBSD with system's BSD make. Signed-off-by: David Lamparter Acked-by: Paul Jakma (cherry picked from commit cc81308148271aeed2277e16885ddca7e2d5bb9b) --- diff --git a/configure.ac b/configure.ac index 2672b0fa6a..ca8aaf8aff 100755 --- a/configure.ac +++ b/configure.ac @@ -19,6 +19,7 @@ AC_CANONICAL_HOST() AC_CANONICAL_TARGET() AM_INIT_AUTOMAKE(1.6) +AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS(config.h) AC_PATH_PROG(PERL, perl)