summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-09-15 01:53:40 +0000
committerRichard M. Stallman <rms@gnu.org>2002-09-15 01:53:40 +0000
commit218e1ed60a4cb24ee0ac7483dabb7512970aca36 (patch)
tree307546f378188f660dfa9a5cb57b3dc8514f73de /Makefile.in
parent05662dfffd44d1e2eb428693f19e115492a64ee3 (diff)
downloademacs-218e1ed60a4cb24ee0ac7483dabb7512970aca36.tar.gz
(maybe_bootstrap): Test for complete absence of compiled Lisp files.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index fde9f14c40c..e972e4b2524 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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