After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 591376 - Support silent build rules with automake 1.11
Support silent build rules with automake 1.11
Status: RESOLVED FIXED
Product: glade
Classification: Applications
Component: general
git master
Other Linux
: Normal trivial
: ---
Assigned To: Glade 3 Maintainers
Glade 3 Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-08-10 21:19 UTC by Javier Jardón (IRC: jjardon)
Modified: 2009-10-09 12:49 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Support silent build rules with automake 1.11 (848 bytes, patch)
2009-08-10 21:21 UTC, Javier Jardón (IRC: jjardon)
committed Details | Review

Description Javier Jardón (IRC: jjardon) 2009-08-10 21:19:39 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.
Comment 1 Javier Jardón (IRC: jjardon) 2009-08-10 21:21:00 UTC
Created attachment 140379 [details] [review]
Support silent build rules with automake 1.11
Comment 2 Tristan Van Berkom 2009-09-13 17:18:18 UTC
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 3 Tristan Van Berkom 2009-09-13 18:09:11 UTC
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
Comment 4 Javier Jardón (IRC: jjardon) 2009-10-09 12:49:54 UTC
Patch committed

Yay! My first Gnome commit :)