From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Emacs cvs newbie problems Date: Sat, 14 Sep 2002 21:50:24 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: References: <200209140220.34377.hattons@speakeasy.net> Reply-To: rms@gnu.org NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1032055133 5184 127.0.0.1 (15 Sep 2002 01:58:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 15 Sep 2002 01:58:53 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17qOgV-0001LU-00 for ; Sun, 15 Sep 2002 03:58:51 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17qPJ9-0007cM-00 for ; Sun, 15 Sep 2002 04:38:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17qOgi-0004dc-00; Sat, 14 Sep 2002 21:59:04 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17qOYN-0002Nb-00 for emacs-devel@gnu.org; Sat, 14 Sep 2002 21:50:27 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17qOYL-0002N1-00 for emacs-devel@gnu.org; Sat, 14 Sep 2002 21:50:26 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17qOYK-0002Mv-00 for emacs-devel@gnu.org; Sat, 14 Sep 2002 21:50:24 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 17qOYK-0000JP-00; Sat, 14 Sep 2002 21:50:24 -0400 Original-To: hattons@speakeasy.net In-reply-to: <200209140220.34377.hattons@speakeasy.net> Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:7916 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:7916 Please try this patch--it should make the first issue easier to understand, and explain how to solve the second. *** Makefile.in.~1.266.~ Wed Sep 11 23:16:28 2002 --- Makefile.in Sat Sep 14 15:12:24 2002 *************** *** 715,723 **** .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."; \ exit 1;\ fi --- 715,725 ---- .PHONY: maybe_bootstrap maybe_bootstrap: ! @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