From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Lennart Borgman" Newsgroups: gmane.emacs.devel Subject: Re: Suggested change to man/makefile.w32-in Date: Mon, 25 Oct 2004 01:32:54 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <003a01c4ba21$db4ab550$0200a8c0@sedrcw11488> References: <047f01c4ba03$de62ed70$0200a8c0@sedrcw11488> 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 1098660847 3844 80.91.229.6 (24 Oct 2004 23:34:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Oct 2004 23:34:07 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 25 01:33:49 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CLrrw-0003bH-00 for ; Mon, 25 Oct 2004 01:33:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLrzY-0002r0-Qh for ged-emacs-devel@m.gmane.org; Sun, 24 Oct 2004 19:41:40 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CLrzS-0002qv-Ka for emacs-devel@gnu.org; Sun, 24 Oct 2004 19:41:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CLrzS-0002qj-68 for emacs-devel@gnu.org; Sun, 24 Oct 2004 19:41:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLrzS-0002qg-3f for emacs-devel@gnu.org; Sun, 24 Oct 2004 19:41:34 -0400 Original-Received: from [81.228.11.107] (helo=av1-1-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CLrr8-0001JT-4s; Sun, 24 Oct 2004 19:32:58 -0400 Original-Received: by av1-1-sn1.fre.skanova.net (Postfix, from userid 502) id 55BC637E96; Mon, 25 Oct 2004 01:32:57 +0200 (CEST) Original-Received: from smtp3-1-sn1.fre.skanova.net (smtp3-1-sn1.fre.skanova.net [81.228.11.163]) by av1-1-sn1.fre.skanova.net (Postfix) with ESMTP id 483A337E4F; Mon, 25 Oct 2004 01:32:57 +0200 (CEST) Original-Received: from sedrcw11488 (t5o58p9.telia.com [195.67.196.9]) by smtp3-1-sn1.fre.skanova.net (Postfix) with SMTP id 2781137E42; Mon, 25 Oct 2004 01:32:55 +0200 (CEST) Original-To: "Jason Rumney" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28867 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28867 ----- Original Message ----- From: "Jason Rumney" To: "Lennart Borgman" Cc: "Emacs Devel" Sent: Sunday, October 24, 2004 10:50 PM Subject: Re: Suggested change to man/makefile.w32-in : "Lennart Borgman" writes: : : > There were one more problem with building info on w32 which I did not notice : > first. It will currently only build when cmd.exe is the shell. : > : > To get "make info" to work when MSYS is in the path (which makes "sh" the : > shell for the makefile) the following change should be made to : > "man/makefile.w32-in": : > : > ****Old: : > info: $(INFO_TARGETS) : > ifeq "$(SHELLTYPE)" "CMD" : > $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) : : In the version I have, that line is unconditional. I am pretty sure : that using ifeq will break the build in nmake anyway. It is a typo by me, there is no ifeq line in the old version. Could the ifeq line in the new version be written in a way that handles both nmake and gmake? : Is there still a problem with msys if you remove the ifeq line above? Yes, multi-install-info.bat is treated as a sh script by MSYS (and that does not work very well). - Lennart