# HG changeset patch # User Miles Bader # Date 1214015822 0 # Node ID 41be5bc2426ea498317d7aea22c62daa1cb34d7b # Parent eae2eee28ad35f0a4c0fda046ec17d9320a55139 Fix autoload building command in src Makefile Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1268 diff -r eae2eee28ad3 -r 41be5bc2426e src/ChangeLog --- a/src/ChangeLog Sat Jun 21 01:38:39 2008 +0000 +++ b/src/ChangeLog Sat Jun 21 02:37:02 2008 +0000 @@ -1,3 +1,8 @@ +2008-06-21 Miles Bader + + * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp + build dir, not the lisp source dir. + 2008-06-21 Stefan Monnier * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs. diff -r eae2eee28ad3 -r 41be5bc2426e src/Makefile.in --- a/src/Makefile.in Sat Jun 21 01:38:39 2008 +0000 +++ b/src/Makefile.in Sat Jun 21 02:37:02 2008 +0000 @@ -1349,7 +1349,7 @@ ${lisp} ${SOME_MACHINE_LISP}: witness-emacs ${PRECOMP} ../lisp/loaddefs.el: witness-emacs - cd $(lispsource); $(MAKE) $(MFLAGS) autoloads EMACS=../src/bootstrap-emacs${EXEEXT} + cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=../src/bootstrap-emacs${EXEEXT} /* Dump an Emacs executable named bootstrap-emacs containing the files from loadup.el in source form. */