Em 18-01-2012 10:31, Rémi Denis-Courmont escreveu: > On Wed, 18 Jan 2012 10:19:24 -0200, Mauro Carvalho Chehab > <mchehab@xxxxxxxxxx> wrote: >> Not sure if it is possible, but it would be great if the build output >> would be less verbose. libtool adds a lot of additional (generally > useless) >> messages, with makes harder to see the compilation warnings in the >> middle of all those garbage. > > These days, automake has a silent mode that looks much like a kernel > compilation. > Thanks for pointing it! I've enabled this with this small patch. Regards, Mauro. commit 69378dc5285a5bac78e1e57cce34cc9af3855d52 Author: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> Date: Wed Jan 18 10:41:26 2012 -0200 autotools: allow enabling the silent-rules With this change, it is now possible to do: $ make V=0 or $ ./configure --enable-silent-rules in order to be less verbose. Signed-off-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> diff --git a/configure.ac b/configure.ac index 48428d1..6d3e76a 100644 --- a/configure.ac +++ b/configure.ac @@ -36,6 +36,7 @@ AC_CONFIG_FILES([Makefile AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 -Wno-portability]) # 1.10 is needed for target_LIBTOOLFLAGS AM_MAINTAINER_MODE +AM_SILENT_RULES # Checks for programs. AC_PROG_CXX -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html