aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-05-01 15:18:52 +0000
committerStefan Monnier2008-05-01 15:18:52 +0000
commit581c438cffbd6da5193d5a703786dcee470b52a8 (patch)
tree4fcaeb01ace0d95ce95f4ebc720a6b29aae88ae6
parent047aaeb9fd1e673ec473a20199430e8797df5e61 (diff)
downloademacs-581c438cffbd6da5193d5a703786dcee470b52a8.tar.gz
emacs-581c438cffbd6da5193d5a703786dcee470b52a8.zip
Revert incorrect fix for claimed bootstrap breakage.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/Makefile.in4
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 @@
12008-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
4
12008-05-01 Daiki Ueno <ueno@unixuser.org> 52008-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
5972008-04-27 Andreas Schwab <schwab@suse.de>
598
599 * Makefile.el: Unbreak bootstrap.
600
5932008-04-27 Michael Albinus <michael.albinus@gmx.de> 6012008-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
8752008-04-23 Magnus Henoch <mange@freemail.hu> 8852008-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
82emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) 82emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
83# Prerequisites for running $(emacs) 83# Prerequisites for running $(emacs)
84emacs-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