aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-01-05 22:40:43 +0000
committerBill Wohler2006-01-05 22:40:43 +0000
commit77a0dbd2e01c01f17a5c699cbde4c277960648b8 (patch)
treea9499654dc1e5fd66e0943ed45ff30cc595e9ec3
parent176c99dca23ca4d5e5e0b29124527276c82c5200 (diff)
downloademacs-77a0dbd2e01c01f17a5c699cbde4c277960648b8.tar.gz
emacs-77a0dbd2e01c01f17a5c699cbde4c277960648b8.zip
(compile-always): Add mh-autoloads dependency.
(bootstrap): Remove mh-autoloads dependency, as compile dependency provides it.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/Makefile.in6
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 09109667c5f..a8c70453e6d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12006-01-05 Bill Wohler <wohler@newt.com>
2
3 * Makefile.in (compile-always): Add mh-autoloads dependency.
4 (bootstrap): Remove mh-autoloads dependency, as compile dependency
5 provides it.
6
12006-01-05 Stefan Monnier <monnier@iro.umontreal.ca> 72006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an 9 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 9a4497679ef..39986d6a60a 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -1,5 +1,5 @@
1# Maintenance productions for the Lisp directory 1# Maintenance productions for the Lisp directory
2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 3
4# This file is part of GNU Emacs. 4# This file is part of GNU Emacs.
5 5
@@ -169,7 +169,7 @@ compile: $(lisp)/subdirs.el mh-autoloads doit
169# unconditionally. Some files don't actually get compiled because they 169# unconditionally. Some files don't actually get compiled because they
170# set the local variable no-byte-compile. 170# set the local variable no-byte-compile.
171 171
172compile-always: $(lisp)/subdirs.el doit 172compile-always: $(lisp)/subdirs.el mh-autoloads doit
173 # `|| true' prevents old Bash versions from getting confused 173 # `|| true' prevents old Bash versions from getting confused
174 # by an error. 174 # by an error.
175 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \ 175 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
@@ -283,7 +283,7 @@ bootstrap-clean:
283 283
284# Generate/update files for the bootstrap process. 284# Generate/update files for the bootstrap process.
285 285
286bootstrap: update-subdirs autoloads mh-autoloads compile 286bootstrap: update-subdirs autoloads compile
287 287
288# Generate/update files after the bootstrap process. 288# Generate/update files after the bootstrap process.
289# custom-deps needs `preloaded-file-list'. 289# custom-deps needs `preloaded-file-list'.