From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "dhruva" Newsgroups: gmane.emacs.devel Subject: emacs/lispref/Makefile.in: Minor fix for MS Win port Date: Wed, 20 Aug 2003 13:35:15 +0530 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030820080515.9CB46772E7@smtp.us2.messagingengine.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1061629861 16867 80.91.224.253 (23 Aug 2003 09:11:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 23 Aug 2003 09:11:01 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Sat Aug 23 11:11:00 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19qUQG-0005cs-00 for ; Sat, 23 Aug 2003 11:11:00 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19qUUp-0002Le-00 for ; Sat, 23 Aug 2003 11:15:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19qUOC-0006Wn-3k for emacs-devel@quimby.gnus.org; Sat, 23 Aug 2003 05:08:52 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19pxWR-0000pA-FQ for emacs-devel@gnu.org; Thu, 21 Aug 2003 18:03:11 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19pOJp-0007Id-G9 for emacs-devel@gnu.org; Wed, 20 Aug 2003 04:28:20 -0400 Original-Received: from [66.111.4.25] (helo=mail.messagingengine.com) by monty-python.gnu.org with esmtp (Exim 4.20) id 19pNy1-0007sA-Bz for emacs-devel@gnu.org; Wed, 20 Aug 2003 04:05:17 -0400 Original-Received: from smtp.us2.messagingengine.com (localhost [127.0.0.1]) by localhost.localdomain (Postfix) with ESMTP id BDD1D116447 for ; Wed, 20 Aug 2003 04:05:15 -0400 (EDT) Original-Received: from 10.202.2.133 ([10.202.2.133] helo=smtp.us2.messagingengine.com) by messagingengine.com with SMTP; Wed, 20 Aug 2003 04:05:15 -0400 Original-Received: by smtp.us2.messagingengine.com (Postfix, from userid 99) id 9CB46772E7; Wed, 20 Aug 2003 04:05:15 -0400 (EDT) Content-Disposition: inline X-Mailer: MIME::Lite 1.2 (F2.71; T1.001; A1.51; B2.12; Q2.03) Original-To: "Emacs Devel" X-Epoch: 1061366715 X-Sasl-enc: yTIqqQzTabNVBa/gPJLDBA X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:16098 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:16098 Hello, I had sent a mail with this fix but my mail server went off. I am not sure whether the mail was sent. Incase it is duplicated, my apologies. In emacs/lispref/Makefile.in, a call to 'ln -s' is done on 'index.texi. The MinGW/Win32 port of 'ln' creates a symbolic link with a '.lnk' extension. Hence, "ln -s index.perm index.texi" results in a file "index.texi.lnk" instead of "index.texi". This causes a build failure for emacs/lispref. I have made a trivial modification. with regards, dhruva [dky]diff -burN D:\tmp\cvs\emacs\emacs\lispref\Makefile.in Makefile.in --- D:\tmp\cvs\emacs\emacs\lispref\Makefile.in 2003-08-13 19:45:11.000000000 +0530 +++ Makefile.in 2003-08-20 09:51:04.000000000 +0530 @@ -135,6 +135,11 @@ else \ ln -s $(srcdir)/index.unperm index.texi || ln $(srcdir)/index.unperm index.texi || cp $(srcdir)/index.unperm index.texi; \ fi + # For MS port of ln + if [ -f index.texi.lnk ]; \ + then \ + mv index.texi.lnk index.texi; \ + fi install: elisp $(srcdir)/mkinstalldirs $(infodir) -- Dhruva Krishnamurthy Web: http://schemer.fateback.com/