aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2012-04-08 23:47:33 -0700
committerGlenn Morris2012-04-08 23:47:33 -0700
commit50fe702a88904e0e29ccda7b7b41782985a16d48 (patch)
tree9a4fe85e1236390393c3db4e398ad76b7af16e8b /src
parentfd9d85c2d2a2bb0f159f5d13c3c7b5c900164654 (diff)
downloademacs-50fe702a88904e0e29ccda7b7b41782985a16d48.tar.gz
emacs-50fe702a88904e0e29ccda7b7b41782985a16d48.zip
Generate leim-list with bootstrap-emacs, in prep for dumping it with emacs
* src/Makefile.in: (leimdir): New variable. ($(leimdir)/leim-list.el): New rule. (emacs$(EXEEXT)): Depend on leim-list.el. Fixes: debbugs:4789
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/Makefile.in6
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1109f31f9d8..eea8345b4f4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12012-04-09 Glenn Morris <rgm@gnu.org> 12012-04-09 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in: Generate leim-list with bootstrap-emacs, in
4 preparation for dumping it with emacs. (Bug#4789)
5 (leimdir): New variable.
6 ($(leimdir)/leim-list.el): New rule.
7 (emacs$(EXEEXT)): Depend on leim-list.el.
8
3 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821) 9 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
4 (Fget_buffer_create): Don't call Qucs_set_table_for_input. 10 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
5 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input. 11 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
diff --git a/src/Makefile.in b/src/Makefile.in
index 035ea277454..8c3704f830e 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -49,6 +49,7 @@ lispsource = $(srcdir)/../lisp
49lib = ../lib 49lib = ../lib
50libsrc = ../lib-src 50libsrc = ../lib-src
51etc = ../etc 51etc = ../etc
52leimdir = ../leim
52oldXMenudir = ../oldXMenu 53oldXMenudir = ../oldXMenu
53lwlibdir = ../lwlib 54lwlibdir = ../lwlib
54lispdir = ../lisp 55lispdir = ../lisp
@@ -393,13 +394,16 @@ LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \
393 394
394all: emacs$(EXEEXT) $(OTHER_FILES) 395all: emacs$(EXEEXT) $(OTHER_FILES)
395 396
397$(leimdir)/leim-list.el: bootstrap-emacs$(EXEEXT)
398 cd $(leimdir) && $(MAKE) $(MFLAGS) leim-list.el BUILT_EMACS=$(bootstrap_exe)
399
396## Does anyone ever pay attention to the load-path-shadows output here? 400## Does anyone ever pay attention to the load-path-shadows output here?
397## The dumped Emacs is as functional and more efficient than 401## The dumped Emacs is as functional and more efficient than
398## bootstrap-emacs, so we replace the latter with the former. 402## bootstrap-emacs, so we replace the latter with the former.
399## Strictly speaking, emacs does not depend directly on all of $lisp, 403## Strictly speaking, emacs does not depend directly on all of $lisp,
400## since not all pieces are used on all platforms. But DOC depends 404## since not all pieces are used on all platforms. But DOC depends
401## on all of $lisp, and emacs depends on DOC, so it is ok to use $lisp here. 405## on all of $lisp, and emacs depends on DOC, so it is ok to use $lisp here.
402emacs$(EXEEXT): temacs$(EXEEXT) $(etc)/DOC $(lisp) 406emacs$(EXEEXT): temacs$(EXEEXT) $(etc)/DOC $(lisp) $(leimdir)/leim-list.el
403 if test "$(CANNOT_DUMP)" = "yes"; then \ 407 if test "$(CANNOT_DUMP)" = "yes"; then \
404 ln -f temacs$(EXEEXT) emacs$(EXEEXT); \ 408 ln -f temacs$(EXEEXT) emacs$(EXEEXT); \
405 EMACSLOADPATH=$(lispsource) ./emacs -batch \ 409 EMACSLOADPATH=$(lispsource) ./emacs -batch \