]> git.eshelyaron.com Git - emacs.git/commitdiff
(mh-loaddefs.el): Finish setting up the default empty
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 17 Jul 2006 21:22:50 +0000 (21:22 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 17 Jul 2006 21:22:50 +0000 (21:22 +0000)
file *before* telling Emacs to add the autoloads, in case it fails.

lisp/Makefile.in

index e90c6161f75fee9989fc672725c562e4f20679fd..1b4a152888a54172d5240e434068c5bdff294c5d 100644 (file)
@@ -247,12 +247,6 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC)
        echo ";;; Commentary:" >> $@
        echo ";;; Change Log:" >> $@
        echo ";;; Code:" >> $@
-       $(EMACS) $(EMACSOPT) \
-          -l autoload \
-          --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
-          --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
-          --eval "(setq make-backup-files nil)" \
-          -f batch-update-autoloads $(lisp)/mh-e
        echo "\f" >> $@
        echo "(provide 'mh-loaddefs)" >> $@
        echo ";; Local Variables:" >> $@
@@ -261,6 +255,12 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC)
        echo ";; no-update-autoloads: t" >> $@
        echo ";; End:" >> $@
        echo ";;; mh-loaddefs.el ends here" >> $@
+       $(EMACS) $(EMACSOPT) \
+          -l autoload \
+          --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
+          --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
+          --eval "(setq make-backup-files nil)" \
+          -f batch-update-autoloads $(lisp)/mh-e
 
 # Prepare a bootstrap in the lisp subdirectory.
 #