From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Wu Weiwei" Newsgroups: gmane.emacs.bugs Subject: Re: ntemacs installation bug fix Date: Fri, 14 Apr 2006 18:47:49 +0800 Message-ID: <200604141847469215235@gmail.com> References: <200604131809300629798@gmail.com> <200604140049526713211@gmail.com> <200604140137509210513@gmail.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1145012082 27538 80.91.229.2 (14 Apr 2006 10:54:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 14 Apr 2006 10:54:42 +0000 (UTC) Cc: "bug-gnu-emacs@gnu.org" Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Apr 14 12:54:36 2006 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FULwd-0002XM-1m for geb-bug-gnu-emacs@m.gmane.org; Fri, 14 Apr 2006 12:54:31 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FULwc-0006Y8-Ja for geb-bug-gnu-emacs@m.gmane.org; Fri, 14 Apr 2006 06:54:30 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FULqG-0002Is-F2 for bug-gnu-emacs@gnu.org; Fri, 14 Apr 2006 06:47:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FULqC-0002IA-C1 for bug-gnu-emacs@gnu.org; Fri, 14 Apr 2006 06:47:56 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FULqC-0002I7-8e for bug-gnu-emacs@gnu.org; Fri, 14 Apr 2006 06:47:52 -0400 Original-Received: from [64.233.166.182] (helo=pproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FULvi-0004Lt-JD for bug-gnu-emacs@gnu.org; Fri, 14 Apr 2006 06:53:34 -0400 Original-Received: by pproxy.gmail.com with SMTP id c63so39720pyc for ; Fri, 14 Apr 2006 03:47:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:references:subject:message-id:x-mailer:mime-version:content-type:content-transfer-encoding; b=Hq347Wy3lMINCvX5/sSGCoAXeTEl0swgmDB/M8SaaZPuYgFNWibk7BqCGQ0EOwyHqtRkdIWjws1InpUAGyYNXNhAOFIHvrsizXayZZliiOusZ56LP6xw54Th167rpHIatOyyP1GnsylrrJofgV4OtgIakYczEqQ0C29zPZbYX9o= Original-Received: by 10.35.77.18 with SMTP id e18mr1105104pyl; Fri, 14 Apr 2006 03:47:51 -0700 (PDT) Original-Received: from wuweiwei ( [60.191.31.83]) by mx.gmail.com with ESMTP id y78sm99763pyg.2006.04.14.03.47.49; Fri, 14 Apr 2006 03:47:50 -0700 (PDT) Original-To: "Eli Zaretskii" X-mailer: Foxmail 6, 01, 102, 12 [cn] X-Mailman-Approved-At: Fri, 14 Apr 2006 06:54:28 -0400 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:15045 Archived-At: >> Date: Fri, 14 Apr 2006 01:37:53 +0800 >> From: "Wu Weiwei" >> Cc: "bug-gnu-emacs@gnu.org" >> >> >> The new environment is setup using MinGW-5.0.2.exe from www.mingw.org. My OS is XP Home edition. >> > >> >What do you see if you type this at CMD's prompt (i.e. in the Command >> >Prompt window): >> > >> > mingw32-make --version >> >> --------------------------------------------------------------------------- >> F:\emacs\nt>mingw32-make --version >> GNU Make 3.80 > >Strange, I use the same. > >You see, the problem is the version of Make I have (both 3.80 and the >new 3.81) produce the value of $(CURDIR) with forward slashes. Try >this and tell me what it prints: > > mingw32-make -f - > all: > echo $(CURDIR) > ^Z > >(on the last line press Ctrl-Z). On my system, it prints the current >directory with forward slashes. > >In addition, even if $(CURDIR) is produced with backslashes, the >Windows port of Make should support file names with backslashes in >rule's commands. > >Anyway, isn't MinGW-5.0.2 an unstable version listed under "Proposed"? >Perhaps there's some bug (or a new misfeature) in the runtime included >in that version of MinGW? ----------------------------------- F:\emacs\nt>mingw32-make -f - all: echo $(CURDIR) ^Z echo F:/emacs/nt F:/emacs/nt ----------------------------------- Maybe this is a new misfeature. I was using "configure --prefix F:\emacs-bin", now I change it into "configure --prefix F:/emacs-bin" and everything is OK. Strange, I have used the original command for several mounths on another machine. I'll try to compile emacs using a stable version of mingw later to confirm if it is a misfeature. Thanks for your help. Best Regards Wu Weiwei 2006-04-14