diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-02-18 18:28:24 +0100 |
---|---|---|
committer | Björn Gustavsson <bjorn@erlang.org> | 2014-02-24 11:45:31 +0100 |
commit | b4ce42faabe27edc735d2e3c0cc0dc4981f62299 (patch) | |
tree | d8aeb16d77be51b9ce7f02e90e01eacfeed2bab0 | |
parent | 6c9002f9174d40b69b3a5bcd5ef219ce4ceb3622 (diff) | |
download | erlang-b4ce42faabe27edc735d2e3c0cc0dc4981f62299.tar.gz |
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.
-rw-r--r-- | configure.in | 6 |
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) |