diff options
| author | Miles Bader | 2008-06-21 02:37:02 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-06-21 02:37:02 +0000 |
| commit | fb38e9c96ec49dfd7855d274a5f4e91f412c8568 (patch) | |
| tree | 7e33e47ae539be4b6ac9fe3ebdfeca092a119f33 | |
| parent | fc46d2193603d395a8aaf254fa07e450744e2eb2 (diff) | |
| download | emacs-fb38e9c96ec49dfd7855d274a5f4e91f412c8568.tar.gz emacs-fb38e9c96ec49dfd7855d274a5f4e91f412c8568.zip | |
Fix autoload building command in src Makefile
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1268
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c3476f667d8..fb4131db810 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-06-21 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp | ||
| 4 | build dir, not the lisp source dir. | ||
| 5 | |||
| 1 | 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs. | 8 | * 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 | |||
| 1349 | ${lisp} ${SOME_MACHINE_LISP}: witness-emacs ${PRECOMP} | 1349 | ${lisp} ${SOME_MACHINE_LISP}: witness-emacs ${PRECOMP} |
| 1350 | 1350 | ||
| 1351 | ../lisp/loaddefs.el: witness-emacs | 1351 | ../lisp/loaddefs.el: witness-emacs |
| 1352 | cd $(lispsource); $(MAKE) $(MFLAGS) autoloads EMACS=../src/bootstrap-emacs${EXEEXT} | 1352 | cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=../src/bootstrap-emacs${EXEEXT} |
| 1353 | 1353 | ||
| 1354 | /* Dump an Emacs executable named bootstrap-emacs containing the | 1354 | /* Dump an Emacs executable named bootstrap-emacs containing the |
| 1355 | files from loadup.el in source form. */ | 1355 | files from loadup.el in source form. */ |