diff options
author | Javier Jardón <jjardon@gnome.org> | 2009-11-02 23:23:40 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2009-11-03 20:01:16 +0100 |
commit | fbf052a4822cec4f80f8ff92c5af2cab5ebfa46e (patch) | |
tree | 7b4f608979e0f8f3a5a9bf92778d69cb4e2cb23e | |
parent | 18695c27f120c67d7fd6e2e2280aa361347995e3 (diff) |
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.
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 95b9422..6257a36 100644 --- a/configure.ac +++ b/configure.ac @@ -10,6 +10,11 @@ AM_CONFIG_HEADER(config.h) AC_PROG_CC AC_PROG_INSTALL +# 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])]) + changequote(,)dnl if test "x$GCC" = "xyes"; then case " $CFLAGS " in |