From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Emacs bootstrap Date: Fri, 20 Jun 2008 21:46:45 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1214012828 29294 80.91.229.12 (21 Jun 2008 01:47:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 21 Jun 2008 01:47:08 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 21 03:47:53 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K9sCj-0007BS-FT for ged-emacs-devel@m.gmane.org; Sat, 21 Jun 2008 03:47:49 +0200 Original-Received: from localhost ([127.0.0.1]:49226 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K9sBt-0003Ab-HD for ged-emacs-devel@m.gmane.org; Fri, 20 Jun 2008 21:46:57 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K9sBo-00038a-UY for emacs-devel@gnu.org; Fri, 20 Jun 2008 21:46:52 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K9sBm-00036T-IV for emacs-devel@gnu.org; Fri, 20 Jun 2008 21:46:52 -0400 Original-Received: from [199.232.76.173] (port=48475 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K9sBm-00035y-AD for emacs-devel@gnu.org; Fri, 20 Jun 2008 21:46:50 -0400 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]:20437 helo=ironport2-out.teksavvy.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K9sBl-0006qM-7i for emacs-devel@gnu.org; Fri, 20 Jun 2008 21:46:49 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvQEAPz5W0jO+KWv/2dsb2JhbACBW64a X-IronPort-AV: E=Sophos;i="4.27,683,1204520400"; d="scan'208";a="23043494" Original-Received: from smtp.pppoe.ca (HELO smtp.teksavvy.com) ([65.39.196.238]) by ironport2-out.teksavvy.com with ESMTP; 20 Jun 2008 21:46:45 -0400 Original-Received: from pastel.home ([206.248.165.175]) by smtp.teksavvy.com (Internet Mail Server v1.0) with ESMTP id BHP95345; Fri, 20 Jun 2008 21:46:45 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id AA3687F05; Fri, 20 Jun 2008 21:46:45 -0400 (EDT) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:99572 Archived-At: I've changed the Makefiles so the bootstrap now should be a bit more reliable. E.g., after a checkout, a simple ./configure make should DTRT. And to force a bootstrap, all you need to do is make bootstrap-clean after which make will do a full&clean bootstrap. The target "bootstrap" actually does just that (except it runs ./config.status between the two, just in case). Hopefully, this still work with parallel make (it worked with "make -j4" in my tests), and hopefully it will not cause excessive re-compilation or re-dumping either when you do a simple "make" (a simple "make" will now automatically compile the .el files that need it). Stefan