aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPaul Eggert2015-01-11 01:18:15 -0800
committerPaul Eggert2015-01-11 01:18:48 -0800
commitb995b4ae8f9e08719a92bbe3bd6ac7e8ff091309 (patch)
treec3f5213a2e51c5321d4a3fe6f90faa7b49706941 /etc
parent6cc9ad8d246774837b95b3f01d9007f10d89c9cc (diff)
downloademacs-b995b4ae8f9e08719a92bbe3bd6ac7e8ff091309.tar.gz
emacs-b995b4ae8f9e08719a92bbe3bd6ac7e8ff091309.zip
Default to 'configure --enable-silent-rules'
This greatly shortens the 'make' output, making it more readable and useful. For example, on my platform it shortens a 4125-character line "gcc -std=gnu99 -c -Demacs -I. -I. -I../lib ... emacs.c" -- a line so long that it's hard to see what's going on or where the diagnostics are -- to just "CC emacs.o". * INSTALL: Document this. * configure.ac: Add AM_SILENT_RULES([yes]). (AM_DEFAULT_VERBOSITY): Remove now-unnecessary initialization. * etc/NEWS: Document this. Fixes: bug#19501
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/NEWS6
2 files changed, 9 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 7a27312db85..20f88bdecc3 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
12015-01-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 Default to 'configure --enable-silent-rules'
4 * NEWS: Document this.
5
12015-01-10 Daniel Colascione <dancol@dancol.org> 62015-01-10 Daniel Colascione <dancol@dancol.org>
2 7
3 * NEWS: Fix typo 8 * NEWS: Fix typo
diff --git a/etc/NEWS b/etc/NEWS
index 59d90ababc8..b3267e1ce60 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -40,8 +40,10 @@ or by sticking with Emacs 24.4.
40** The configure option `--with-pkg-config-prog' has been removed. 40** The configure option `--with-pkg-config-prog' has been removed.
41Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. 41Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to.
42 42
43** The configure option '--enable-silent-rules' and the command 43** The configure option '--enable-silent-rules' is now the default,
44'make V=0' now do a better job of suppressing chatter. 44and silent rules are now quieter. To get the old behavior where
45'make' chatters a lot, configure with '--disable-silent-rules' or
46build with 'make V=1'.
45 47
46--- 48---
47** The `grep-changelog' script (and its manual page) are no longer included. 49** The `grep-changelog' script (and its manual page) are no longer included.