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: Suggested change to man/makefile.w32-in Date: Sun, 24 Oct 2004 21:45:36 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <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 1098647934 9886 80.91.229.6 (24 Oct 2004 19:58:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Oct 2004 19:58:54 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 24 21:58:44 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 1CLoVo-0001mu-00 for ; Sun, 24 Oct 2004 21:58:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLodQ-00075N-6U for ged-emacs-devel@m.gmane.org; Sun, 24 Oct 2004 16:06:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CLodJ-00075I-Dd for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:06:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CLodJ-000756-5F for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:06:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLodI-000752-UX for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:06:28 -0400 Original-Received: from [81.228.10.107] (helo=av9-2-sn4.m-sp.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CLoVN-0005t2-N3 for emacs-devel@gnu.org; Sun, 24 Oct 2004 15:58:17 -0400 Original-Received: by av9-2-sn4.m-sp.skanova.net (Postfix, from userid 502) id 015E537EC2; Sun, 24 Oct 2004 21:58:16 +0200 (CEST) Original-Received: from smtp2-2-sn4.m-sp.skanova.net (smtp2-2-sn4.m-sp.skanova.net [81.228.10.182]) by av9-2-sn4.m-sp.skanova.net (Postfix) with ESMTP id DC8A237EC6 for ; Sun, 24 Oct 2004 21:58:16 +0200 (CEST) Original-Received: from sedrcw11488 (t4o58p138.telia.com [195.252.57.138]) by smtp2-2-sn4.m-sp.skanova.net (Postfix) with SMTP id 0ED7337E54 for ; Sun, 24 Oct 2004 21:58:15 +0200 (CEST) Original-To: "Emacs Devel" 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:28846 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28846 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) ****New: info: $(INFO_TARGETS) ifeq "$(SHELLTYPE)" "CMD" $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) else for file in $(INFO_TARGETS); do install-info --info-dir=$(infodir) $${file}; done endif After this change (and with makeinfo from MSYS replaced with makeinfo from http://gnuwin32.sourceforge.net/) "make info" will build ok. Could this change be accepted? (I have not checked in any change.) - Lennart