From b4ce42faabe27edc735d2e3c0cc0dc4981f62299 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Tue, 18 Feb 2014 18:28:24 +0100 Subject: Default enable silent rules It's much easier to spot new warnings with silent rules enabled, and I don't know of a good reason to keep it opt-in. --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 88fd847030..5e7429209c 100644 --- a/configure.in +++ b/configure.in @@ -367,9 +367,9 @@ AS_HELP_STRING( [verbose build output (undo: "make V=0")])dnl ]) -DEFAULT_VERBOSITY=1 -if test X${enable_silent_rules} = Xyes; then - DEFAULT_VERBOSITY=0 +DEFAULT_VERBOSITY=0 +if test X${enable_silent_rules} = Xno; then + DEFAULT_VERBOSITY=1 fi AC_SUBST(DEFAULT_VERBOSITY) -- cgit v1.2.3