diff options
author | Jim Meyering <meyering@redhat.com> | 2009-04-19 13:41:52 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-04-23 21:09:13 +0200 |
commit | 52c4018a9c1020c2250b4250dfdda1dfc1873284 (patch) | |
tree | f9566c6d811de24ea8cdfc7d6d3b8e0a59b88b65 | |
parent | 0e414d9e4abff8ac5dd45c48faf1c43d381440ea (diff) | |
download | coreutils-52c4018a9c1020c2250b4250dfdda1dfc1873284.tar.xz |
build: make --enable-silent-rules the default
* configure.ac (AM_INIT_AUTOMAKE): Remove silent-rules. Instead,...
(AM_SILENT_RULES): Use this, with it's undocumented [yes] argument.
Those who want verbose build output may configure with
--disable-silent-rules or use "make V=1".
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8d9bcafe6..8b05b115e 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,8 @@ AC_CONFIG_SRCDIR([src/ls.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([lib/config.h:lib/config.hin]) -AM_INIT_AUTOMAKE([1.10b dist-xz color-tests parallel-tests silent-rules]) +AM_INIT_AUTOMAKE([1.10b dist-xz color-tests parallel-tests]) +AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. AC_PROG_CC_STDC AM_PROG_CC_C_O |