From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: Problems with 'make install' after the build of Emacs-cvs on Cygwin Date: Mon, 02 Oct 2006 21:53:07 +0900 Message-ID: References: <20061002003033.GA80773@gothmog.pc> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: sea.gmane.org 1159793816 13786 80.91.229.2 (2 Oct 2006 12:56:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 2 Oct 2006 12:56:56 +0000 (UTC) Cc: eliz@gnu.org, Angelo.Graziosi@roma1.infn.it, emacs-devel@gnu.org, storm@cua.dk Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 02 14:56:50 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 1GUNLP-0006Ev-QP for ged-emacs-devel@m.gmane.org; Mon, 02 Oct 2006 14:56:28 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GUNLP-0001TL-9Z for ged-emacs-devel@m.gmane.org; Mon, 02 Oct 2006 08:56:27 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GUNK2-0000xc-MZ for emacs-devel@gnu.org; Mon, 02 Oct 2006 08:55:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GUNJy-0000vz-U6 for emacs-devel@gnu.org; Mon, 02 Oct 2006 08:55:02 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GUNJy-0000vp-O0 for emacs-devel@gnu.org; Mon, 02 Oct 2006 08:54:58 -0400 Original-Received: from [150.29.246.133] (helo=mx1.aist.go.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GUNPu-0002Tt-W5; Mon, 02 Oct 2006 09:01:07 -0400 Original-Received: from smtp2.aist.go.jp ([150.29.246.12]) by mx1.aist.go.jp with ESMTP id k92CsTQn021534; Mon, 2 Oct 2006 21:54:29 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp2.aist.go.jp with ESMTP id k92CsRVF017790; Mon, 2 Oct 2006 21:54:27 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken with local (Exim 3.36 #1 (Debian)) id 1GUNIB-0000uO-00; Mon, 02 Oct 2006 21:53:07 +0900 Original-To: Giorgos Keramidas In-reply-to: <20061002003033.GA80773@gothmog.pc> (message from Giorgos Keramidas on Mon, 2 Oct 2006 03:30:34 +0300) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI) 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:60372 Archived-At: In article <20061002003033.GA80773@gothmog.pc>, Giorgos Keramidas writes: > On 2006-09-30 19:00, Angelo Graziosi wrote: > > > > Hi Eli, > > > > While conserving the tree of previous build of Emacs so that we can try to > > debug its segm. faults, I have tried a new build fram a new CVS downloaded > > after: > > > > 2006-09-30 Eli Zaretskii > > > > * configure: Regenerated. > > > > But when 'make install' there are the following problems: > > -------------------------------------------------------- > > ... > > cd leim; make install > > make[1]: Entering directory `/tmp/emacs/.build/leim' > > ... > > /bin/sh: line > > 0: cd: /tmp/emacs/.inst/usr/local/emacs-22.0.50/share/emacs/22.0.50/leim: No > > such file or directory > > /bin/sh: line 5: /tmp/emacs/leim/mkinstalldirs: No such file or directory Oops, sorry, it's my fault. I've just installed the attached change. --- Kenichi Handa handa@m17n.org Index: Makefile.in =================================================================== RCS file: /cvsroot/emacs/emacs/leim/Makefile.in,v retrieving revision 1.76 retrieving revision 1.77 diff -u -r1.76 -r1.77 --- Makefile.in 28 Sep 2006 05:46:00 -0000 1.76 +++ Makefile.in 2 Oct 2006 12:39:18 -0000 1.77 @@ -221,7 +221,7 @@ rm -rf ${INSTALLDIR}/leim-list.el; \ rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \ else \ - ${srcdir}/mkinstalldirs ${INSTALLDIR}; \ + ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ fi; \ echo "Copying leim files to ${INSTALLDIR} ..." ; \ if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \