diff options
| author | Ken Raeburn | 2000-11-02 18:49:04 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2000-11-02 18:49:04 +0000 |
| commit | 7f25090dcdeb737eed7abcf2460c4cd3ba59ee7d (patch) | |
| tree | ecd8906998bfdb9a13a0750cbd3654b1b026c03f | |
| parent | 7dd6009c0ad08d5afd4f2c1787c79daab5b87493 (diff) | |
| download | emacs-7f25090dcdeb737eed7abcf2460c4cd3ba59ee7d.tar.gz emacs-7f25090dcdeb737eed7abcf2460c4cd3ba59ee7d.zip | |
* Makefile.in (emacs): Set EMACSLOADPATH always.
(update-authors, .el.elc, compile-files): Don't do it explicitly here.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/Makefile.in | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0abf9ac8621..f7edfceabb7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-11-02 Ken Raeburn <raeburn@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (emacs): Set EMACSLOADPATH always. | ||
| 4 | (update-authors, .el.elc, compile-files): Don't do it explicitly | ||
| 5 | here. | ||
| 6 | |||
| 1 | 2000-11-02 Dave Love <fx@gnu.org> | 7 | 2000-11-02 Dave Love <fx@gnu.org> |
| 2 | 8 | ||
| 3 | * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup. | 9 | * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index a42a8d77f0e..22ab5f74e3b 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -69,7 +69,7 @@ COMPILE_FIRST = \ | |||
| 69 | 69 | ||
| 70 | # The actual Emacs command run in the targets below. | 70 | # The actual Emacs command run in the targets below. |
| 71 | 71 | ||
| 72 | emacs = $(EMACS) $(EMACSOPT) | 72 | emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) |
| 73 | 73 | ||
| 74 | # Common command to find subdirectories | 74 | # Common command to find subdirectories |
| 75 | 75 | ||
| @@ -124,7 +124,7 @@ updates: update-subdirs autoloads finder-data custom-deps | |||
| 124 | # Update the AUTHORS file. | 124 | # Update the AUTHORS file. |
| 125 | 125 | ||
| 126 | update-authors: | 126 | update-authors: |
| 127 | EMACSLOADPATH=$(lisp) $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) | 127 | $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) |
| 128 | 128 | ||
| 129 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) | 129 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
| 130 | ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2) | 130 | ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2) |
| @@ -133,7 +133,7 @@ TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) | |||
| 133 | ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2) | 133 | ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2) |
| 134 | 134 | ||
| 135 | .el.elc: subdirs.el | 135 | .el.elc: subdirs.el |
| 136 | -EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $< | 136 | -$(emacs) -f batch-byte-compile $< |
| 137 | 137 | ||
| 138 | $(DONTCOMPILE:.el=.elc): | 138 | $(DONTCOMPILE:.el=.elc): |
| 139 | -rm -f $@ | 139 | -rm -f $@ |
| @@ -156,7 +156,7 @@ compile-files: subdirs.el doit | |||
| 156 | tr ' ' '\012\012' | sort | uniq -u`; \ | 156 | tr ' ' '\012\012' | sort | uniq -u`; \ |
| 157 | for el in $(COMPILE_FIRST) $$els; do \ | 157 | for el in $(COMPILE_FIRST) $$els; do \ |
| 158 | echo Compiling $$el; \ | 158 | echo Compiling $$el; \ |
| 159 | EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \ | 159 | $(emacs) -f batch-byte-compile $$el || exit 1; \ |
| 160 | done | 160 | done |
| 161 | 161 | ||
| 162 | # Backup compiled Lisp files in elc.tar.gz. If that file already | 162 | # Backup compiled Lisp files in elc.tar.gz. If that file already |