GNOME Bugzilla – Bug 591376
Support silent build rules with automake 1.11
Last modified: 2009-10-09 12:49:54 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 140379 [details] [review] Support silent build rules with automake 1.11
Comment on attachment 140379 [details] [review] Support silent build rules with automake 1.11 Currently Glade requires automake 1.9, so the AM_INIT_AUTOMAKE() line should be updated as well as the autogen.sh script accordingly.
Comment on attachment 140379 [details] [review] Support silent build rules with automake 1.11 Ok didnt notice the automake 1.11 dependency was optional. So the patch is good to commit just as soon as I make a branch for 3.6.x
Patch committed Yay! My first Gnome commit :)