From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "William Xue" Newsgroups: gmane.emacs.devel Subject: make emacs-unicode-2 in cygwin Date: Mon, 23 Oct 2006 17:12:16 +0800 Organization: WV Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 Content-Transfer-Encoding: Quoted-Printable X-Trace: sea.gmane.org 1161594905 13254 80.91.229.2 (23 Oct 2006 09:15:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 Oct 2006 09:15:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 23 11:15:03 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gbvta-0008KT-Vh for ged-emacs-devel@m.gmane.org; Mon, 23 Oct 2006 11:14:59 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gbvta-00027r-6z for ged-emacs-devel@m.gmane.org; Mon, 23 Oct 2006 05:14:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gbvr6-0000gr-6r for emacs-devel@gnu.org; Mon, 23 Oct 2006 05:12:24 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gbvr2-0000eU-7i for emacs-devel@gnu.org; Mon, 23 Oct 2006 05:12:23 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gbvr1-0000eB-O3 for emacs-devel@gnu.org; Mon, 23 Oct 2006 05:12:19 -0400 Original-Received: from [66.249.82.225] (helo=wx-out-0506.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gbvr1-0003Mu-9w for emacs-devel@gnu.org; Mon, 23 Oct 2006 05:12:19 -0400 Original-Received: by wx-out-0506.google.com with SMTP id h30so1745507wxd for ; Mon, 23 Oct 2006 02:12:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:to:subject:from:organization:content-type:mime-version:content-transfer-encoding:message-id:user-agent; b=lL1oC3fuRuemcSyOXtTYQ9B4lJTrpB9qOFr0WcCAAwkzQ8NkCrrgLKf6RUec6HRTAzrg6R/s32pdVlo9bQJB2sw64+1Bcg2I4iq3j+m/eROhe+EcZPJYt0NE73Aa53N5Nz+3R6mfaYQ772hMsSEcZsQ97DZj2vRBjJfjOIwrajk= Original-Received: by 10.70.8.8 with SMTP id 8mr334843wxh; Mon, 23 Oct 2006 02:12:18 -0700 (PDT) Original-Received: from williamxue ( [58.33.97.37]) by mx.google.com with ESMTP id g2sm9063465wra.2006.10.23.02.12.17; Mon, 23 Oct 2006 02:12:18 -0700 (PDT) Original-To: emacs-devel@gnu.org User-Agent: Opera Mail/9.02 (Win32) 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:61029 Archived-At: Hi, I try to make emacs-u in cygwin ./configure make bootstrap and it failed at 'mv -f emacs.exe bootstrap-emacs.exe' After reviewed the Makefile, I had some questions: According to the code snippet from Makefile in src, ---8<--------------------------------------------->8--- bootstrap: bootstrap-emacs${EXEEXT} bootstrap-emacs${EXEEXT}: temacs${EXEEXT} = ${lispsource}international/charprop.el $(RUN_TEMACS) --batch --load loadup bootstrap mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT} = ---8<--------------------------------------------->8--- it will rename the emacs.exe to bootstrap-emacs.exe, but when = emacs${EXEEXT} will be made? all: emacs${EXEEXT} emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp} LC_ALL=3DC $(RUN_TEMACS) -batch -l loadup dump -./emacs -q -batch -f list-load-path-shadows -- = Sincerely yours, William