1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(maybe_bootstrap): Test for complete absence of compiled Lisp files.

This commit is contained in:
Richard M. Stallman 2002-09-15 01:53:47 +00:00
parent 0b7bc76fbf
commit ef7fb3bb17
2 changed files with 10 additions and 3 deletions

View file

@ -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)

View 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