From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: sh.exe needed to bootstrap on Windows? Date: Wed, 18 Jul 2007 00:11:02 +0200 Message-ID: References: <469C7621.6000408@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1184710275 19160 80.91.229.12 (17 Jul 2007 22:11:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 Jul 2007 22:11:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: "Eli Zaretskii" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 18 00:11:13 2007 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 1IAvG9-0001yn-Qo for ged-emacs-devel@m.gmane.org; Wed, 18 Jul 2007 00:11:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IAvG9-0008Fi-1t for ged-emacs-devel@m.gmane.org; Tue, 17 Jul 2007 18:11:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IAvG6-0008Fd-CE for emacs-devel@gnu.org; Tue, 17 Jul 2007 18:11:06 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IAvG3-0008FQ-JA for emacs-devel@gnu.org; Tue, 17 Jul 2007 18:11:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IAvG3-0008FN-GE for emacs-devel@gnu.org; Tue, 17 Jul 2007 18:11:03 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.236]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IAvG3-0000i0-2e for emacs-devel@gnu.org; Tue, 17 Jul 2007 18:11:03 -0400 Original-Received: by wx-out-0506.google.com with SMTP id s7so1577514wxc for ; Tue, 17 Jul 2007 15:11:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Ca9aMOQHjy8/861Eh6IuH+fFn+Xtyn+yABjox3vieeFV1q10v4D9qqdXi6hSL/fxbLexqmsv5DV/n9RQiRd+Jw/INbf2WDgWWA4lLGg0DEMTHnafzIVXGSZlVSPB/Ak9FVEuTQZgMCJaKolbLn3bSk0DDojnWuATLFT/LZCX6+M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=kEtAtXNqDLziawnE8wc7xy/PKcidEE3dqiXFmLAfSKXzi5AJjbdJR1lCtoQ0d9fNy7JQ11ikN2Y5uCsPgc7BKJJDTcyGKpT0fIe8OsIryZz4T7GUO757NDmXlbpqZFNtICt1Jf3FO81/rHZsoq2s6vz0xt/9sf62nHjgTsbwYg0= Original-Received: by 10.70.100.14 with SMTP id x14mr1480684wxb.1184710262152; Tue, 17 Jul 2007 15:11:02 -0700 (PDT) Original-Received: by 10.90.87.8 with HTTP; Tue, 17 Jul 2007 15:11:02 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: Linux 2.6 (newer, 2) 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:75027 Archived-At: On 7/17/07, Eli Zaretskii wrote: > Thanks. But I think it's good that I made the change in the Windows > bootstrap procedure anyway, because there's always a chance that some > other command or hook that runs during bootstrap will need a shell. This change is perhaps not needed anymore: 2004-06-06 Juanma Barranquero * makefile.w32-in (bootstrap-nmake): When nmake'ing bootstrap on the lisp/ directory, set SHELL to $(SHELLTYPE); this avoids calling non-existent cmdproxy.exe on boostrappings after a previous install followed by realclean. The problem was that a successful bootstrap/install created the SHELL=cmdproxy.exe registry entry, so subsequent bootstraps failed because cmdproxy.exe wasn't there. The change was: Index: nt/makefile.w32-in =================================================================== RCS file: /cvsroot/emacs/emacs/nt/makefile.w32-in,v retrieving revision 1.22 retrieving revision 1.23 diff -u -2 -r1.22 -r1.23 --- nt/makefile.w32-in 3 May 2004 13:51:23 -0000 1.22 +++ nt/makefile.w32-in 6 Jun 2004 01:59:43 -0000 1.23 @@ -140,5 +140,5 @@ $(MAKE) $(MFLAGS) bootstrap-clean cd ..\lisp - $(MAKE) $(MFLAGS) bootstrap + $(MAKE) $(MFLAGS) SHELL=$(SHELLTYPE) bootstrap cd ..\lib-src $(MAKE) $(MFLAGS) DOC Juanma