diff options
| author | Richard M. Stallman | 2002-09-15 01:53:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-09-15 01:53:47 +0000 |
| commit | ef7fb3bb176551f8cca1a843bb441d41a8484eac (patch) | |
| tree | 1a824a3d3dfb3bd25a29a42bf51a380c3a97d65a | |
| parent | 0b7bc76fbf1dd1e5d8fdf03690bbcb9306676885 (diff) | |
| download | emacs-ef7fb3bb176551f8cca1a843bb441d41a8484eac.tar.gz emacs-ef7fb3bb176551f8cca1a843bb441d41a8484eac.zip | |
(maybe_bootstrap): Test for complete absence of compiled Lisp files.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 8 |
2 files changed, 10 insertions, 3 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-09-14 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (maybe_bootstrap): Test for complete absence | ||
| 4 | of compiled Lisp files. | ||
| 5 | |||
| 1 | 2002-09-11 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2002-09-11 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 7 | ||
| 3 | * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap) | 8 | * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap) |
diff --git a/Makefile.in b/Makefile.in index fde9f14c40c..e972e4b2524 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -715,9 +715,11 @@ dvi: | |||
| 715 | .PHONY: maybe_bootstrap | 715 | .PHONY: maybe_bootstrap |
| 716 | 716 | ||
| 717 | maybe_bootstrap: | 717 | maybe_bootstrap: |
| 718 | @if [ ! -f $(srcdir)/lisp/abbrev.elc ]; then \ | 718 | @bar=`echo ./lisp/*.elc`; \ |
| 719 | echo "Essential Lisp files seem to be missing. You should either"; \ | 719 | if [ "$bar" = './lisp/*.elc' ]; then \ |
| 720 | echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow."; \ | 720 | echo "Your tree does not include the compiled Lisp files."; \ |
| 721 | echo "You need to do \`make bootstrap' to build Emacs."; \ | ||
| 722 | echo "Emacs now requires Texinfo version 4.2."; \ | ||
| 721 | exit 1;\ | 723 | exit 1;\ |
| 722 | fi | 724 | fi |
| 723 | 725 | ||