aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2014-02-18 18:28:24 +0100
committerBjörn Gustavsson <[email protected]>2014-02-24 11:45:31 +0100
commitb4ce42faabe27edc735d2e3c0cc0dc4981f62299 (patch)
treed8aeb16d77be51b9ce7f02e90e01eacfeed2bab0 /configure.in
parent6c9002f9174d40b69b3a5bcd5ef219ce4ceb3622 (diff)
downloadotp-b4ce42faabe27edc735d2e3c0cc0dc4981f62299.tar.gz
otp-b4ce42faabe27edc735d2e3c0cc0dc4981f62299.tar.bz2
otp-b4ce42faabe27edc735d2e3c0cc0dc4981f62299.zip
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.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
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)