diff options
| author | Richard M. Stallman | 2002-02-08 14:11:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-02-08 14:11:47 +0000 |
| commit | 63bcc29614598afbaaf1bb2f22159bad119606cd (patch) | |
| tree | bac5a83fb36bea8c2ed61f57f19c2c2349559ca0 | |
| parent | def08a3f3cef1362be2a89c2977e2a52a4dea9e5 (diff) | |
| download | emacs-63bcc29614598afbaaf1bb2f22159bad119606cd.tar.gz emacs-63bcc29614598afbaaf1bb2f22159bad119606cd.zip | |
(maybe_bootstrap): Add an infinite sleep-loop.
| -rw-r--r-- | Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 24633a84018..7ed696ce423 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -695,6 +695,8 @@ maybe_bootstrap: | |||
| 695 | @if [ ! -f $(srcdir)/lisp/abbrev.elc ]; then \ | 695 | @if [ ! -f $(srcdir)/lisp/abbrev.elc ]; then \ |
| 696 | echo "Essential Lisp files seem to be missing. You should either"; \ | 696 | echo "Essential Lisp files seem to be missing. You should either"; \ |
| 697 | echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow."; \ | 697 | echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow."; \ |
| 698 | echo "This Make job will now hang till you kill it."; \ | ||
| 699 | while true; do sleep 10; done; \ | ||
| 698 | fi | 700 | fi |
| 699 | 701 | ||
| 700 | bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info | 702 | bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info |