diff options
author | Glenn Morris <rgm@gnu.org> | 2011-01-07 18:41:14 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-01-07 18:41:14 -0800 |
commit | d0981f82865f355544d5f80ed819d408d12c3024 (patch) | |
tree | 7960e3277bb604d2bb3ed27665b7f1e2df990d96 /leim/Makefile.in | |
parent | 4967fa34221e7028580c552d31d010b606b8c11b (diff) | |
download | emacs-d0981f82865f355544d5f80ed819d408d12c3024.tar.gz |
In Makefiles, -batch implies -q.
* leim/makefile.w32-in (RUN_EMACS):
* leim/Makefile.in (RUN-EMACS): -batch implies --no-init-file.
* lisp/makefile.w32-in (EMACSOPT): -batch implies --no-init-file.
* src/makefile.w32-in ($(EMACS)):
* src/Makefile.in (emacs$(EXEEXT)): -batch implies -q.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index ba70319ca1e..955aeb98421 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -1,9 +1,9 @@ # Makefile for leim subdirectory in GNU Emacs. # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 +# 2006, 2007, 2008, 2009, 2010, 2011 # Free Software Foundation, Inc. # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 +# 2006, 2007, 2008, 2009, 2010, 2011 # National Institute of Advanced Industrial Science and Technology (AIST) # Registration Number H14PRO021 @@ -48,7 +48,7 @@ buildlisppath=${srcdir}/../lisp # How to run Emacs. RUN-EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C \ - ${BUILT-EMACS} -batch --no-init-file --no-site-file + ${BUILT-EMACS} -batch --no-site-file # Subdirectories to be made if ${srcdir} is different from the current # directory. |