From fb38e9c96ec49dfd7855d274a5f4e91f412c8568 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sat, 21 Jun 2008 02:37:02 +0000 Subject: [PATCH] Fix autoload building command in src Makefile Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1268 --- src/ChangeLog | 5 +++++ src/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index c3476f667d8..fb4131db810 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 --git a/src/Makefile.in b/src/Makefile.in index 7f93441039a..1b283ca399b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1349,7 +1349,7 @@ ${PRECOMP}: witness-emacs ${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. */ -- 2.11.4.GIT