From: "Tim Van Holder" To: , Subject: Re: Minor DJGPP specific fixes for texinfo-4.0d Date: Tue, 27 Nov 2001 18:45:18 +0100 Message-ID: <000a01c1776b$47b16a60$28f8e0d5@pandora.be> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 In-reply-to: <2D28476DAE@HRZ1.hrz.tu-darmstadt.de> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2462.0000 Importance: Normal Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Please note that I am not subscribed to any Texinfo list Neither am I. > 1) It is not possible to create doc.c and funs.h. The reason > is that the makefile rule to create them contains makedoc as > dependency. But the dependency > should be makedoc$(EXEEXT). All this means that the following > line in Makefile.am: > > $(BUILT_SOURCES): makedoc $(cmd_sources) > > should be replaced by this one: > > $(BUILT_SOURCES): makedoc$(EXEEXT) $(cmd_sources) Not true. EXEEXT should be added by automake. Automake <= 1.4 require AC_EXEEXT in configure.in for this to happen; automake 1.5 always adds it (because autoconf 2.5x always sets EXEEXT).