summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2016-12-31 07:35:11 -0600
committerEric Blake <eblake@redhat.com>2016-12-31 07:41:03 -0600
commitb4a08ecfd34e703bd846f1e85b4e2a94a34b16d9 (patch)
treeb229b510321dc83f0a5ecd8276f828d804c173df
parentc8a4b7c32db3a6d8d5dc7a9997df2c80ac95b030 (diff)
downloadm4-b4a08ecfd34e703bd846f1e85b4e2a94a34b16d9.tar.gz
maint: make silent builds the default
The user still has full control over verbosity levels, both setting their per-project defaults at configure time (or even in a config.site file), as well as a per-run override. But these days, most projects are defaulting to silent rules without user intervention. * configure.ac (AM_SILENT_RULES): Add, to match what most projects are doing these days. Signed-off-by: Eric Blake <eblake@redhat.com>
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e063f94e..26998b58 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2016-12-31 Eric Blake <eblake@redhat.com>
+ maint: make silent builds the default
+ * configure.ac (AM_SILENT_RULES): Add, to match what most projects
+ are doing these days.
+
maint: release no longer creates a diff file
* HACKING: Drop outdated steps.
diff --git a/configure.ac b/configure.ac
index 67930872..78b87883 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,6 +24,7 @@ AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.11.6 dist-bzip2 dist-xz color-tests parallel-tests
silent-rules subdir-objects gnu])
+AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
m4_pattern_forbid([^M4_[A-Z]])