diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-10 12:44:09 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-10 15:03:11 +0200 |
commit | 13a499406fe43ab3a6d4d13c660f6a8b368e638f (patch) | |
tree | 7ca9a959195fceac369e56aba8b43341101797c7 /daemon/configure.ac | |
parent | 92ac2400a326256ef819e0195d7ecfa7f03645be (diff) | |
download | libguestfs-13a499406fe43ab3a6d4d13c660f6a8b368e638f.tar.gz libguestfs-13a499406fe43ab3a6d4d13c660f6a8b368e638f.tar.xz libguestfs-13a499406fe43ab3a6d4d13c660f6a8b368e638f.zip |
build: enable automake's silent rules option
* configure.ac: Use AM_SILENT_RULES([yes]).
Those who want verbose build output may configure with
--disable-silent-rules or use "make V=1".
* daemon/configure.ac: Likewise.
Diffstat (limited to 'daemon/configure.ac')
-rw-r--r-- | daemon/configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/configure.ac b/daemon/configure.ac index b038d17a..43e331bf 100644 --- a/daemon/configure.ac +++ b/daemon/configure.ac @@ -19,6 +19,9 @@ AC_INIT([libguestfs-daemon],[1.0.0]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) +m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])]) +AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. + AC_CONFIG_MACRO_DIR([m4]) dnl If the user specified --enable-32bit, then force the C compiler |