From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jay Belanger Newsgroups: gmane.emacs.devel Subject: Re: Set the version number in the texinfo manuals using configure Date: Sat, 30 Oct 2010 16:20:16 -0500 Message-ID: <8739rnxtrj.fsf@gmail.com> References: <83r5fzn0vr.fsf@gnu.org> <87wrp7bbw8.fsf@gmail.com> <83wrp76zln.fsf@gnu.org> <4CCBD7B1.1050006@gmx.at> <83vd4j6ct6.fsf@gnu.org> <4CCC305E.2080208@gmx.at> <83sjzn66qp.fsf@gnu.org> <4CCC4F52.2030806@gmx.at> <83r5f761qx.fsf@gnu.org> <4CCC5CA1.2050606@gmx.at> <83pqur5uxw.fsf@gnu.org> <4CCC850F.1080102@gmx.at> <83ocab5qul.fsf@gnu.org> Reply-To: jay.p.belanger@gmail.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1288473496 8314 80.91.229.12 (30 Oct 2010 21:18:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 30 Oct 2010 21:18:16 +0000 (UTC) Cc: martin rudalics , jay.p.belanger@gmail.com, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 30 23:18:09 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PCIoO-0001KM-8V for ged-emacs-devel@m.gmane.org; Sat, 30 Oct 2010 23:18:08 +0200 Original-Received: from localhost ([127.0.0.1]:60233 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCIoL-0001J5-Ob for ged-emacs-devel@m.gmane.org; Sat, 30 Oct 2010 17:18:01 -0400 Original-Received: from [140.186.70.92] (port=51148 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCIoF-0001Ix-Jv for emacs-devel@gnu.org; Sat, 30 Oct 2010 17:17:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PCIo8-0006ZM-33 for emacs-devel@gnu.org; Sat, 30 Oct 2010 17:17:49 -0400 Original-Received: from s8.cableone.net ([24.116.0.234]:60243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PCIo6-0006Z2-Cc; Sat, 30 Oct 2010 17:17:46 -0400 Original-Received: from belanger-desktop (unverified [24.116.73.151]) by s8.cableone.net (CableOne SMTP Service s8) with ESMTP id 38318699-1872270 for multiple; Sat, 30 Oct 2010 14:17:41 -0700 In-Reply-To: <83ocab5qul.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 30 Oct 2010 23:10:42 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-Vpipe: Scanner said ok (av_avast) X-IP-stats: Incoming Last 1, First 834, in=720, out=0, spam=0 ip=24.116.73.151 X-Originating-IP: 24.116.73.151 X-Abuse-Info: Send abuse complaints to abuse@cableone.net X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) 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:132201 Archived-At: >> make -C ../doc/misc info >> make[1]: Entering directory `C:/emacs/trunk/doc/misc' >> makeinfo --force -I./../emacs faq.texi >> makeinfo --force calc.texi >> calc.texi:10: @include `emacsver.texi': No such file or directory. >> make[1]: *** [../../info/calc] Error 1 > > That's definitely an old makefile, from before the latest changes to > makefile.w32-in: the command for faq.texi includes the -I switch, > while the command for calc.texi does not. When I changed calc.texi to use emacsver.texi, I added the line @include ../emacs/emacsver.texi I noticed that faq.texi used emacsver.texi and didn't add the "../emacs/" prefix to the include statement. It worked fine when I tested it out (on a GNU/Linux system); perhaps for some reason that was the wrong thing to do for Windows.