diff options
author | Javier Jardón <javierjc1982@gmail.com> | 2009-08-17 17:55:09 +0200 |
---|---|---|
committer | Frédéric Péters <fpeters@0d.be> | 2009-08-17 20:15:23 +0200 |
commit | c930f3a74812b00d821be8f250b836e398c7315a (patch) | |
tree | 28ed54db442eebd1ab385e6b8567277045710f32 /configure.in | |
parent | 270a95f12e2375227218ec66da4e112d8f331f77 (diff) | |
download | gtk+-c930f3a74812b00d821be8f250b836e398c7315a.tar.gz |
Support silent build rules with automake 1.11 (GnomeBug:591998)
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.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 6f37437334..5f92bdcb68 100644 --- a/configure.in +++ b/configure.in @@ -49,6 +49,11 @@ cflags_set=${CFLAGS+set} AM_INIT_AUTOMAKE(no-define) AM_CONFIG_HEADER(config.h) +# 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 +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) + # # For each of the libraries we build, we define the following |