From 63bcc29614598afbaaf1bb2f22159bad119606cd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 8 Feb 2002 14:11:47 +0000 Subject: [PATCH] (maybe_bootstrap): Add an infinite sleep-loop. --- Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.in b/Makefile.in index 24633a8401..7ed696ce42 100644 --- a/Makefile.in +++ b/Makefile.in @@ -695,6 +695,8 @@ 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."; \ + echo "This Make job will now hang till you kill it."; \ + while true; do sleep 10; done; \ fi bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info -- 2.39.2