From: Jack Kelly Date: Mon, 16 Jul 2012 00:31:27 +0000 (+1000) Subject: elisp: --batch implies -q, remove -q X-Git-Tag: v1.12b~64^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ee9c78b296198bcec16bd9a9f01511ded9780e0;p=thirdparty%2Fautomake.git elisp: --batch implies -q, remove -q According to the emacs manual[1], --batch implies -q, so there's no need to pass -q when compiling elisp. * lib/am/lisp.am: Remove -q from $(EMACS) call. [1]: http://gnu.org/s/emacs/manual/html_node/emacs/Initial-Options.html Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/lisp.am b/lib/am/lisp.am index b18568b75..36b124382 100644 --- a/lib/am/lisp.am +++ b/lib/am/lisp.am @@ -38,7 +38,7 @@ endif %?INSTALL% esac; \ ## Emacs byte-compilation won't create this automatically, sadly. test -d $$am__dir || $(MKDIR_P) $$am__dir || exit 1; \ - $(EMACS) -q --batch \ + $(EMACS) --batch \ $$am__subdir_includes -L $(builddir) -L $(srcdir) \ --eval "(defun byte-compile-dest-file (f) \"$@\")" \ --eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \