# HG changeset patch # User Ken Raeburn # Date 973190944 0 # Node ID 075e5f998739a04491a23d921292d1abc1f63b71 # Parent b3b6a57b5f5bfd61d06d1a2218883da7e0792b82 * Makefile.in (emacs): Set EMACSLOADPATH always. (update-authors, .el.elc, compile-files): Don't do it explicitly here. diff -r b3b6a57b5f5b -r 075e5f998739 lisp/ChangeLog --- a/lisp/ChangeLog Thu Nov 02 18:44:05 2000 +0000 +++ b/lisp/ChangeLog Thu Nov 02 18:49:04 2000 +0000 @@ -1,3 +1,9 @@ +2000-11-02 Ken Raeburn + + * Makefile.in (emacs): Set EMACSLOADPATH always. + (update-authors, .el.elc, compile-files): Don't do it explicitly + here. + 2000-11-02 Dave Love * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup. diff -r b3b6a57b5f5b -r 075e5f998739 lisp/Makefile.in --- a/lisp/Makefile.in Thu Nov 02 18:44:05 2000 +0000 +++ b/lisp/Makefile.in Thu Nov 02 18:49:04 2000 +0000 @@ -69,7 +69,7 @@ # The actual Emacs command run in the targets below. -emacs = $(EMACS) $(EMACSOPT) +emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) # Common command to find subdirectories @@ -124,7 +124,7 @@ # Update the AUTHORS file. update-authors: - EMACSLOADPATH=$(lisp) $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) + $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) TAGS: $(lisptagsfiles1) $(lisptagsfiles2) ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2) @@ -133,7 +133,7 @@ ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2) .el.elc: subdirs.el - -EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $< + -$(emacs) -f batch-byte-compile $< $(DONTCOMPILE:.el=.elc): -rm -f $@ @@ -156,7 +156,7 @@ tr ' ' '\012\012' | sort | uniq -u`; \ for el in $(COMPILE_FIRST) $$els; do \ echo Compiling $$el; \ - EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \ + $(emacs) -f batch-byte-compile $$el || exit 1; \ done # Backup compiled Lisp files in elc.tar.gz. If that file already