From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Broken lisp/Makefile.w32-in Date: Thu, 5 Sep 2002 07:08:09 +0200 (IST) Sender: emacs-devel-admin@gnu.org Message-ID: References: <20020904163125.510C.LEKTU@terra.es> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1031202622 3945 127.0.0.1 (5 Sep 2002 05:10:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 5 Sep 2002 05:10:22 +0000 (UTC) Cc: Takaaki.Ota@am.sony.com, 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 17mouJ-00011V-00 for ; Thu, 05 Sep 2002 07:10:19 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17mpTp-0004yv-00 for ; Thu, 05 Sep 2002 07:47:01 +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 17movu-0004w2-00; Thu, 05 Sep 2002 01:11:58 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17moux-0004tC-00 for emacs-devel@gnu.org; Thu, 05 Sep 2002 01:10:59 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17mouq-0004qi-00 for emacs-devel@gnu.org; Thu, 05 Sep 2002 01:10:58 -0400 Original-Received: from is.elta.co.il ([199.203.121.2]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17moup-0004qd-00 for emacs-devel@gnu.org; Thu, 05 Sep 2002 01:10:51 -0400 Original-Received: from is (is [199.203.121.2]) by is.elta.co.il (8.9.3/8.8.8) with SMTP id HAA10763; Thu, 5 Sep 2002 07:08:09 +0200 (IST) X-Sender: eliz@is Original-To: Juanma Barranquero In-Reply-To: <20020904163125.510C.LEKTU@terra.es> 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:7516 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:7516 On Wed, 4 Sep 2002, Juanma Barranquero wrote: > On Sun, 01 Sep 2002 19:59:58 +0300, "Eli Zaretskii" wrote: > > > Does it help to put the redirection at the beginning of the command, > > like below? > > > > >> foo.txt for ... > > It does in the command line, but no from inside the makefile. nmake > complains that it cannot execute the "for" command. How about if you invoke command.com explicitly, like this: command.com /c for .... >>foo.txt (If this works, we will have a problem of figuring out when to use command.com and when cmd.exe, but it might nevertheless be worthwhile to know whether the bug goes away this way.) > As a last resort I can split WINS into two variables, like > > WINS_NO_TERM=\ > calc \ > calendar \ > etc ... \ > > WINS=$(WINS_NO_TERM) term > > and use WINS_NO_TERM in update-subdirs, but that's just an *ugly* hack :) If it does the job, there's nothing ugly about it. Windows shells are themselves ugly hacks, so any means of getting them to do what we want is IMHO justified ;-)