]> git.eshelyaron.com Git - emacs.git/commitdiff
(maybe_bootstrap): Test for complete absence of compiled Lisp files.
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 Sep 2002 01:53:47 +0000 (01:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 Sep 2002 01:53:47 +0000 (01:53 +0000)
ChangeLog
Makefile.in

index be586918210ce718f92a30710b6a47c2e49d4009..4a89d07d6d9733ad346457fa156c4128ef2722a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-14  Richard M. Stallman  <rms@gnu.org>
+
+       * Makefile.in (maybe_bootstrap): Test for complete absence
+       of compiled Lisp files.
+
 2002-09-11  Stefan Monnier  <monnier@cs.yale.edu>
 
        * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
index fde9f14c40c40b9dc516082128e019e7333edaba..e972e4b252423d2c101cb7f72f01a740baf3ea03 100644 (file)
@@ -715,9 +715,11 @@ dvi:
 .PHONY: maybe_bootstrap
 
 maybe_bootstrap:
-       @if [ ! -f $(srcdir)/lisp/abbrev.elc ]; then \
-         echo "Essential Lisp files seem to be missing.  You should either"; \
-         echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow.";    \
+        @bar=`echo ./lisp/*.elc`; \
+       if [ "$bar" = './lisp/*.elc' ]; then \
+         echo "Your tree does not include the compiled Lisp files."; \
+         echo "You need to do \`make bootstrap' to build Emacs."; \
+         echo "Emacs now requires Texinfo version 4.2."; \
          exit 1;\
        fi