diff options
| author | Stefan Monnier | 2008-05-01 15:18:52 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-05-01 15:18:52 +0000 |
| commit | 581c438cffbd6da5193d5a703786dcee470b52a8 (patch) | |
| tree | 4fcaeb01ace0d95ce95f4ebc720a6b29aae88ae6 | |
| parent | 047aaeb9fd1e673ec473a20199430e8797df5e61 (diff) | |
| download | emacs-581c438cffbd6da5193d5a703786dcee470b52a8.tar.gz emacs-581c438cffbd6da5193d5a703786dcee470b52a8.zip | |
Revert incorrect fix for claimed bootstrap breakage.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/Makefile.in | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 90cbdad0d7f..ea4dad18234 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-05-01 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * Makefile.in: Revert incorrect fix for claimed bootstrap breakage. | ||
| 4 | |||
| 1 | 2008-05-01 Daiki Ueno <ueno@unixuser.org> | 5 | 2008-05-01 Daiki Ueno <ueno@unixuser.org> |
| 2 | 6 | ||
| 3 | * epa-file-hook.el: New file split from epa-file.el. | 7 | * epa-file-hook.el: New file split from epa-file.el. |
| @@ -590,6 +594,10 @@ | |||
| 590 | (whitespace-report-list): Const initialization fix. | 594 | (whitespace-report-list): Const initialization fix. |
| 591 | (whitespace-color-on): Code fix. | 595 | (whitespace-color-on): Code fix. |
| 592 | 596 | ||
| 597 | 2008-04-27 Andreas Schwab <schwab@suse.de> | ||
| 598 | |||
| 599 | * Makefile.el: Unbreak bootstrap. | ||
| 600 | |||
| 593 | 2008-04-27 Michael Albinus <michael.albinus@gmx.de> | 601 | 2008-04-27 Michael Albinus <michael.albinus@gmx.de> |
| 594 | 602 | ||
| 595 | * net/tramp.el (tramp-replace-environment-variables): New defun. | 603 | * net/tramp.el (tramp-replace-environment-variables): New defun. |
| @@ -872,6 +880,8 @@ | |||
| 872 | * cus-start.el: Remove insert-default-directory and | 880 | * cus-start.el: Remove insert-default-directory and |
| 873 | read-file-name-completion-ignore-case. | 881 | read-file-name-completion-ignore-case. |
| 874 | 882 | ||
| 883 | * Makefile.in (emacs-deps): Leave it empty. | ||
| 884 | |||
| 875 | 2008-04-23 Magnus Henoch <mange@freemail.hu> | 885 | 2008-04-23 Magnus Henoch <mange@freemail.hu> |
| 876 | 886 | ||
| 877 | * tar-mode.el (tar-untar-buffer): If the entry has directory | 887 | * tar-mode.el (tar-untar-buffer): If the entry has directory |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 396f39f80d7..935370e8fb0 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -81,7 +81,9 @@ COMPILE_FIRST = \ | |||
| 81 | 81 | ||
| 82 | emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) | 82 | emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) |
| 83 | # Prerequisites for running $(emacs) | 83 | # Prerequisites for running $(emacs) |
| 84 | emacs-deps = $(lisp)/subdirs.el | 84 | # This should not be necessary because in order to have ../src/emacs |
| 85 | # we must have built subdirs.el already. | ||
| 86 | # emacs-deps = $(lisp)/subdirs.el | ||
| 85 | 87 | ||
| 86 | # Common command to find subdirectories | 88 | # Common command to find subdirectories |
| 87 | 89 | ||