From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Marcin Antczak Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] my first patch for emacs Date: Sun, 25 Sep 2005 22:49:54 +0200 Message-ID: <1127681394.12649.18.camel@localhost.localdomain> References: <1126709585.12119.10.camel@localhost.localdomain> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: sea.gmane.org 1127682267 32393 80.91.229.2 (25 Sep 2005 21:04:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 25 Sep 2005 21:04:27 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 25 23:04:20 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EJdfO-0004BK-0P for ged-emacs-devel@m.gmane.org; Sun, 25 Sep 2005 23:04:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EJdfN-000556-BV for ged-emacs-devel@m.gmane.org; Sun, 25 Sep 2005 17:04:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EJdZ1-0001qD-0g for emacs-devel@gnu.org; Sun, 25 Sep 2005 16:57:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EJdYs-0001l7-Fz for emacs-devel@gnu.org; Sun, 25 Sep 2005 16:57:30 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EJdYn-0001WY-Fj for emacs-devel@gnu.org; Sun, 25 Sep 2005 16:57:21 -0400 Original-Received: from [194.9.223.7] (helo=mta3.orange.pl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EJdRf-0001hz-Eh for emacs-devel@gnu.org; Sun, 25 Sep 2005 16:49:59 -0400 Original-Received: from e-dev.e-dev.tele2.pl ([213.173.212.166]) by mta3.centertel.pl (mailserver) with ESMTPA id <0INE00FBH4F8B870@mta3.centertel.pl> for emacs-devel@gnu.org; Sun, 25 Sep 2005 22:47:33 +0200 (CEST) In-reply-to: <1126709585.12119.10.camel@localhost.localdomain> Original-To: emacs-devel@gnu.org X-Mailer: Evolution 2.4.0 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:43225 Archived-At: Dnia 14-09-2005, =C5=9Bro o godzinie 16:54 +0200, Marcin Antczak napi= sa=C5=82(a): > Hi! >=20 > This is my first patch I created for emacs - so, be gentle... >=20 > This provides better test procedure when trying to build emacs from= cvs > without bootstrap. RMS sent me mail with question about what my patch does better. So, sorry for delay and here is my explanation. With current code you can have _any single_ *.elc file in lisp direct= ory and make will think that everything is ok and you don't need to run m= ake bootstrap. So, then emacs will not build because errors will show a while later. With my code - Makefile will try to test if there is a minimal set of .elc files available to build minimal emacs-bootstrap binary. Of course after a little while I think that I should also add more fi= les to this list, because with files defined in ${lisp} variable you propably will be able to build emacs-bootstrap but still face problem= s when trying to build binaries from ./lib-src... Anyway now you know what was my idea, and if I find a while to think about again I'll try to prepare something better. Marcin