GNOME Bugzilla – Bug 588863
Support silent build rules with automake 1.11
Last modified: 2009-07-17 14:57:56 UTC
Automake 1.11 supports Linux-kernel like silent build rules which enables build output like this: make[4]: Entering directory `/home/martin/source/glib/glib' CC garray.lo CC gasyncqueue.lo CC gatomic.lo CC gbacktrace.lo with easy ways to switch to the more verbose output either at configure time: ./configure --disable-silent-rules or at make time: make V=1 The attached patch enables silent build rules by default.
Created attachment 138580 [details] [review] 0001-Enable-automake-silent-rules-by-default.patch I'm ready to push this to master as soon as I get an OK.
I'd prefer verbose to be default, sorry.
I don't understand why, would you mind to elaborate?
Its my personal preference, nothing else...
Created attachment 138599 [details] [review] 0001-Support-silent-build-rules-with-automake-1.11.patch Patch to support it, but that has it disabled by default, as agreed on IRC.
commit e4bf2ac41d605a2bd3c858790a0fe36b86bcf7d9 Author: Martin Nordholts <martinn@src.gnome.org> Date: Fri Jul 17 16:49:53 2009 +0200 Support silent build rules with automake 1.11 Support silent build rules, requires at least automake-1.11. Enable by either passing --enable-silent-rules to configure or passing V=0 to make. Bug #588863. configure.in | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)