]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
elisp: --batch implies -q, remove -q
authorJack Kelly <jack@jackkelly.name>
Mon, 16 Jul 2012 00:31:27 +0000 (10:31 +1000)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 16 Jul 2012 09:36:14 +0000 (11:36 +0200)
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 <stefano.lattarini@gmail.com>
lib/am/lisp.am

index b18568b75c6b88fe29536488acbdbc3e6c87da7d..36b124382b36ed62903e5de4f9e476bd0f60ec8d 100644 (file)
@@ -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))"; \