Mercurial > emacs
changeset 47489:36a83e5558ed
(maybe_bootstrap): Test for complete absence of compiled Lisp files.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 15 Sep 2002 01:53:40 +0000 |
parents | 6ca0edea0a56 |
children | 7a17a8b1cb9b |
files | Makefile.in |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Sun Sep 15 01:52:54 2002 +0000 +++ b/Makefile.in Sun Sep 15 01:53:40 2002 +0000 @@ -715,9 +715,11 @@ .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