From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Broken lisp/Makefile.w32-in Date: Wed, 31 Jul 2002 09:51:01 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <20020731094604.2EEA.LEKTU@terra.es> References: <20020730.235911.01367475.Takaaki.Ota@am.sony.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1028101919 30073 127.0.0.1 (31 Jul 2002 07:51:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 31 Jul 2002 07:51:59 +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.33 #1 (Debian)) id 17ZoH0-0007ow-00 for ; Wed, 31 Jul 2002 09:51:58 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17ZoZ7-00076k-00 for ; Wed, 31 Jul 2002 10:10:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17ZoHK-00030x-00; Wed, 31 Jul 2002 03:52:18 -0400 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17ZoGA-00030X-00 for ; Wed, 31 Jul 2002 03:51:06 -0400 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id g6V7p1x09813; Wed, 31 Jul 2002 09:51:01 +0200 Original-To: Tak Ota In-Reply-To: <20020730.235911.01367475.Takaaki.Ota@am.sony.com> X-Mailer: Becky! ver. 2.05.04 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:6197 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:6197 On Tue, 30 Jul 2002 23:59:11 -0700 (PDT), Tak Ota wrote: > revision 1.21 of lisp/Makefile.w32-in is broken for --with-msvc > configuration. The change below is responsible for this. Reverting > it to revision 1.20 removes the problem in "make bootstrap" Yes. > I suspect the use of an environment variable above is flawed since > each action line is executed by independent shell (cmd.exe) thus the > variable QWINS is not shared. Yes. There's also another problem: the "compile-files" target was renamed to "compile", but there's already a compile target in Makefile.w32-in. With that bug, compiling Emacs tried to backup the .elc files, which would fail if you didn't happen to have tar, for example. I've commited a patch that reverts some of the changes by Andrew that affect the MSVC/nmake build. With the patch, I can bootstrap and compile without problem on a W2K. /L/e/k/t/u