diff options
author | Benjamin Otte <otte@redhat.com> | 2010-07-05 00:37:10 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-07-05 18:29:58 +0200 |
commit | eb63284fc3ae9377003ca312be58ae8f5dbbfdbd (patch) | |
tree | d1aab69db5403e1ca47f1b6991fac0c441d5a856 | |
parent | 68bbb6b4a0a3b9bc923ccf130b1ca4221a5e54bd (diff) |
configure: Use automake silent rules
This replaces shave usage.
If silent rules are not available, don't use them.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a6819f8a..43c3b197 100644 --- a/configure.ac +++ b/configure.ac @@ -10,6 +10,7 @@ AC_CONFIG_HEADERS(config.h) AC_CONFIG_AUX_DIR(build) AC_CONFIG_MACRO_DIR(build) AM_INIT_AUTOMAKE([1.9.6 gnu -Wall no-define]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_LIBTOOL_WIN32_DLL dnl Must be called before AC_PROG_LIBTOOL AC_PROG_LIBTOOL dnl ([1.4]) Don't remove! DOLT dnl Make my libtool fast! |