diff options
| author | Glenn Morris | 2012-04-09 16:37:08 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-04-09 16:37:08 -0400 |
| commit | 935396c0f0f97df05f0e41af517abed22655fd20 (patch) | |
| tree | 4cf7146c001b2f87f40531a2aa66cb8d7264558c | |
| parent | e98e405ed50a82bf1223b47f7ef4be324e4cd66b (diff) | |
| download | emacs-935396c0f0f97df05f0e41af517abed22655fd20.tar.gz emacs-935396c0f0f97df05f0e41af517abed22655fd20.zip | |
Rename leim/Makefile's BUILT_EMACS to EMACS
* leim/Makefile.in (EMACS): Rename from BUILT_EMACS.
(RUN_EMACS, compile-main): Update for this change.
* src/Makefile.in ($(leimdir)/leim-list.el):
Pass EMACS rather than BUILT_EMACS.
| -rw-r--r-- | leim/ChangeLog | 3 | ||||
| -rw-r--r-- | leim/Makefile.in | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index fecefbd14e5..07e26cf766b 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-04-09 Glenn Morris <rgm@gnu.org> | 1 | 2012-04-09 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (EMACS): Rename from BUILT_EMACS. | ||
| 4 | (RUN_EMACS, compile-main): Update for this change. | ||
| 5 | |||
| 3 | * Makefile.in (../src/emacs): Remove this rule, no longer relevant | 6 | * Makefile.in (../src/emacs): Remove this rule, no longer relevant |
| 4 | since leim distributed with Emacs (eg lisp/ has no such rule). | 7 | since leim distributed with Emacs (eg lisp/ has no such rule). |
| 5 | (all): Remove $BUILT_EMACS dependence. | 8 | (all): Remove $BUILT_EMACS dependence. |
diff --git a/leim/Makefile.in b/leim/Makefile.in index bbae652b3e6..21561a357d1 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -41,13 +41,13 @@ GZIP_PROG = @GZIP_PROG@ | |||
| 41 | 41 | ||
| 42 | # Which Emacs to use to convert TIT files to Emacs Lisp files, | 42 | # Which Emacs to use to convert TIT files to Emacs Lisp files, |
| 43 | # byte-compile Emacs Lisp files, and generate the file leim-list.el. | 43 | # byte-compile Emacs Lisp files, and generate the file leim-list.el. |
| 44 | BUILT_EMACS = ../src/emacs | 44 | EMACS = ../src/emacs |
| 45 | 45 | ||
| 46 | buildlisppath=${srcdir}/../lisp | 46 | buildlisppath=${srcdir}/../lisp |
| 47 | 47 | ||
| 48 | # How to run Emacs. | 48 | # How to run Emacs. |
| 49 | RUN_EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C \ | 49 | RUN_EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C \ |
| 50 | ${BUILT_EMACS} -batch --no-site-file --no-site-lisp | 50 | ${EMACS} -batch --no-site-file --no-site-lisp |
| 51 | 51 | ||
| 52 | # Subdirectories to be made if ${srcdir} is different from the current | 52 | # Subdirectories to be made if ${srcdir} is different from the current |
| 53 | # directory. | 53 | # directory. |
| @@ -171,7 +171,7 @@ compile-main: ${TIT_MISC} | |||
| 171 | echo "$${el}c"; \ | 171 | echo "$${el}c"; \ |
| 172 | done | xargs echo) | \ | 172 | done | xargs echo) | \ |
| 173 | while read chunk; do \ | 173 | while read chunk; do \ |
| 174 | $(MAKE) $(MFLAGS) compile-targets BUILT_EMACS="$(BUILT_EMACS)" TARGETS="$$chunk"; \ | 174 | $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \ |
| 175 | done | 175 | done |
| 176 | 176 | ||
| 177 | MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done | 177 | MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done |
diff --git a/src/ChangeLog b/src/ChangeLog index f7889d99335..aa7d3b5eb7f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in ($(leimdir)/leim-list.el): | ||
| 4 | Pass EMACS rather than BUILT_EMACS. | ||
| 5 | |||
| 1 | 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com> | 6 | 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 7 | ||
| 3 | * process.c (make_process): | 8 | * process.c (make_process): |
diff --git a/src/Makefile.in b/src/Makefile.in index 8c3704f830e..a90fd5841e4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -395,7 +395,7 @@ LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \ | |||
| 395 | all: emacs$(EXEEXT) $(OTHER_FILES) | 395 | all: emacs$(EXEEXT) $(OTHER_FILES) |
| 396 | 396 | ||
| 397 | $(leimdir)/leim-list.el: bootstrap-emacs$(EXEEXT) | 397 | $(leimdir)/leim-list.el: bootstrap-emacs$(EXEEXT) |
| 398 | cd $(leimdir) && $(MAKE) $(MFLAGS) leim-list.el BUILT_EMACS=$(bootstrap_exe) | 398 | cd $(leimdir) && $(MAKE) $(MFLAGS) leim-list.el EMACS=$(bootstrap_exe) |
| 399 | 399 | ||
| 400 | ## 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? |
| 401 | ## The dumped Emacs is as functional and more efficient than | 401 | ## The dumped Emacs is as functional and more efficient than |