bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] build: make --enable-silent-rules the default


From: Jim Meyering
Subject: [PATCH] build: make --enable-silent-rules the default
Date: Thu, 23 Apr 2009 21:27:16 +0200

Automake has made it so a package maintainer has to
go a little out of the way to make --enable-silent-rules the default.
So I'm doing this:

>From 52c4018a9c1020c2250b4250dfdda1dfc1873284 Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Sun, 19 Apr 2009 13:41:52 +0200
Subject: [PATCH] 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".
---
 configure.ac |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 8d9bcaf..8b05b11 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
--
1.6.3.rc1.205.g37f8




reply via email to

[Prev in Thread] Current Thread [Next in Thread]