]> git.eshelyaron.com Git - emacs.git/commitdiff
(bootstrap-prepare): Don't use an old loaddefs.el.
authorLute Kamstra <lute@gnu.org>
Sun, 12 Jun 2005 10:26:22 +0000 (10:26 +0000)
committerLute Kamstra <lute@gnu.org>
Sun, 12 Jun 2005 10:26:22 +0000 (10:26 +0000)
lisp/ChangeLog
lisp/Makefile.in

index f56a50c5441aa4f7ca94ea6464e944d2c1f58f90..7fd8b519dd4e489722404a76df30a2a0b35dce27 100644 (file)
@@ -1,5 +1,7 @@
 2005-06-12  Lute Kamstra  <lute@gnu.org>
 
+       * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
+
        * man.el (Man-mode-map): Initialize it properly.
        (Man-mode): Set mode-class property to special.
 
index 01dbc563bc0d77a40b213173e11edfe3877b0e2f..593dcc7fc3f5cab7b9c5bc6c644cb693c9d1d2fd 100644 (file)
@@ -215,21 +215,19 @@ $(lisp)/progmodes/cc-mode.elc: \
 
 # Prepare a bootstrap in the lisp subdirectory.
 #
-# Build loaddefs.el, because it's not sure it's up-to-date, and if it's not,
-# that might lead to errors during the bootstrap because something fails to
-# autoload as expected.  However, if there is no emacs binary, then we can't
-# build autoloads yet, so just make sure there's some loaddefs.el file, as
-# it's necessary for generating the binary (because loaddefs.el is an
-# automatically generated file, we don't want to store it in the source
-# repository).
+# Build loaddefs.el to make sure it's up-to-date.  If it's not, that
+# might lead to errors during the bootstrap because something fails to
+# autoload as expected.  If there is no emacs binary, then we can't
+# build autoloads yet.  In that case we have to use ldefs-boot.el;
+# bootstrap should always work with ldefs-boot.el.  (Because
+# loaddefs.el is an automatically generated file, we don't want to
+# store it in the source repository).
 
 bootstrap-prepare:
        if test -x $(EMACS); then                               \
          $(MAKE) $(MFLAGS) autoloads;                          \
        else                                                    \
-         if test ! -r $(lisp)/loaddefs.el; then                \
-           cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el;       \
-         fi                                                    \
+         cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el;         \
        fi
 
 maintainer-clean: distclean