diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-01-18 04:05:38 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2010-01-18 05:57:13 +0800 |
commit | f687777360a213c638374c1d497ca849717ce174 (patch) | |
tree | 3a6740e80f8e240d11942c99b028838b095eed6c /configure.ac | |
parent | 6a1aecd8b35cee47c56326d4babc46a146a91be0 (diff) | |
download | gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar.gz gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar.bz2 gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar.lz gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar.xz gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.tar.zst gsoc2013-empathy-f687777360a213c638374c1d497ca849717ce174.zip |
Support silent build rules with automake 1.11
Support silent build rules, requires at least automake-1.11.
Disable by either passing --disable-silent-rules to configure or
passing V=1 to make.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=585364
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 863c56f30..1286058e9 100644 --- a/configure.ac +++ b/configure.ac @@ -62,6 +62,12 @@ AC_CONFIG_AUX_DIR(.) GNOME_COMMON_INIT AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability) + +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AC_ISC_POSIX AC_PROG_CC AC_HEADER_STDC @@ -442,8 +448,6 @@ AC_ARG_ENABLE(coding-style-checks, AC_SUBST([ENABLE_CODING_STYLE_CHECKS]) # ----------------------------------------------------------- -SHAVE_INIT(.) - AC_OUTPUT([ Makefile data/Makefile @@ -460,8 +464,6 @@ AC_OUTPUT([ tests/interactive/Makefile tests/xml/Makefile tools/Makefile - shave - shave-libtool ]) echo " @@ -470,7 +472,6 @@ Configure summary: Compiler....................: ${CC} Compiler Flags..............: ${CFLAGS} ${ERROR_CFLAGS} Prefix......................: ${prefix} - Shaved build................: ${enable_shave} Coding style checks.........: ${ENABLE_CODING_STYLE_CHECKS} Features: |