[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: automake: silent make output fo
From: |
Karl Berry |
Subject: |
[automake-commit] branch master updated: automake: silent make output for Emacs byte compilation. |
Date: |
Mon, 26 Sep 2022 11:57:53 -0400 |
This is an automated email from the git hooks/post-receive script.
karl pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=bee2ab1231a1c2638895c4455e212b0997784d03
The following commit(s) were added to refs/heads/master by this push:
new bee2ab123 automake: silent make output for Emacs byte compilation.
bee2ab123 is described below
commit bee2ab1231a1c2638895c4455e212b0997784d03
Author: Richard Hopkins <emacs@unbit.co.uk>
AuthorDate: Mon Sep 26 08:57:43 2022 -0700
automake: silent make output for Emacs byte compilation.
* lib/am/lisp.am: Use $(AM_V_GEN) in .el.elc rule.
* NEWS: mention this.
* THANKS: add new contributor.
---
NEWS | 8 +++++---
THANKS | 1 +
lib/am/lisp.am | 2 +-
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/NEWS b/NEWS
index 3a9ede1a6..406c5f1ec 100644
--- a/NEWS
+++ b/NEWS
@@ -7,11 +7,13 @@ New in 1.17:
* Bugs fixed
- - When compiling emacs lisp files, emacs is run with --no-site-file to
+ - Compiling Python modules with Python 3.5+ uses multiple optimization
+ levels.
+
+ - When compiling Emacs Lisp files, emacs is run with --no-site-file to
disable user config files that might hang or access the terminal.
- - Compiling Python modules with Python 3.5+ will use multiple optimization
- levels now.
+ - Emacs Lisp compilations respects silent make output.
* New features added
diff --git a/THANKS b/THANKS
index 9ef9eb4a7..1f246151d 100644
--- a/THANKS
+++ b/THANKS
@@ -372,6 +372,7 @@ Reuben Thomas rrt@sc3d.org
Rich Wales richw@webcom.com
Richard Boulton richard@tartarus.org
Richard Dawe rich@phekda.freeserve.co.uk
+Richard Hopkins emacs@unbit.co.uk
Richard W.M. Jones rjones@redhat.com
Rob Savoye rob@cygnus.com
Robert Bihlmeyer robbe@orcus.priv.at
diff --git a/lib/am/lisp.am b/lib/am/lisp.am
index 746f01679..6395ef389 100644
--- a/lib/am/lisp.am
+++ b/lib/am/lisp.am
@@ -30,7 +30,7 @@ endif %?INSTALL%
## The destination file is normally determined by appending "c" to the
## input (which would erroneously put it in $(srcdir) in VPATH builds),
## so we override that, too.
- if test '$(EMACS)' != no; then \
+ $(AM_V_GEN)if test '$(EMACS)' != no; then \
am__dir=. am__subdir_includes=''; \
case $@ in */*) \
am__dir=`echo '$@' | sed 's,/[^/]*$$,,'`; \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: automake: silent make output for Emacs byte compilation.,
Karl Berry <=