diff options
author | Jim Meyering <meyering@redhat.com> | 2009-04-27 15:53:21 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-04-27 15:53:21 +0200 |
commit | d3899f9b9f7166934736ba972198604f42f2e699 (patch) | |
tree | 62a30f807bc1f4968b78746438737be416f0ecaf | |
parent | b395c96b2b18ecbf2377cc11bb1a4393ff49a026 (diff) | |
download | idutils-d3899f9b9f7166934736ba972198604f42f2e699.tar.gz idutils-d3899f9b9f7166934736ba972198604f42f2e699.tar.bz2 idutils-d3899f9b9f7166934736ba972198604f42f2e699.zip |
build: make automake's silent-rules option the default
* configure.ac (AM_SILENT_RULES): Use this, with it's "yes" argument.
Those who want verbose build output may configure with
--disable-silent-rules or use "make V=1".
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e2040eb..d868735 100644 --- a/configure.ac +++ b/configure.ac @@ -7,6 +7,7 @@ AC_INIT([idutils], m4_esyscmd([build-aux/git-version-gen .tarball-version]), AC_CONFIG_AUX_DIR(build-aux) AM_INIT_AUTOMAKE([1.10.1 dist-xz std-options]) +AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. AC_CONFIG_SRCDIR([src/mkid.c]) AC_CONFIG_HEADERS([lib/config.h:lib/config.hin]) |