From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Set the version number in the texinfo manuals using configure Date: Sun, 31 Oct 2010 00:02:25 +0200 Message-ID: <83lj5f5oge.fsf@gnu.org> 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> <8739rnxtrj.fsf@gmail.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1288476157 17702 80.91.229.12 (30 Oct 2010 22:02:37 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 30 Oct 2010 22:02:37 +0000 (UTC) Cc: rudalics@gmx.at, emacs-devel@gnu.org To: jay.p.belanger@gmail.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 31 00:02:29 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 1PCJVN-0002CM-3T for ged-emacs-devel@m.gmane.org; Sun, 31 Oct 2010 00:02:29 +0200 Original-Received: from localhost ([127.0.0.1]:41431 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCJVL-0000V9-Rp for ged-emacs-devel@m.gmane.org; Sat, 30 Oct 2010 18:02:27 -0400 Original-Received: from [140.186.70.92] (port=59027 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PCJVG-0000V4-10 for emacs-devel@gnu.org; Sat, 30 Oct 2010 18:02:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PCJVE-0003KK-Fo for emacs-devel@gnu.org; Sat, 30 Oct 2010 18:02:21 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:50233) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PCJVE-0003KE-6k for emacs-devel@gnu.org; Sat, 30 Oct 2010 18:02:20 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0LB400G00IF6R600@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Sun, 31 Oct 2010 00:02:18 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([77.126.47.222]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0LB400GI9IJTNI30@a-mtaout20.012.net.il>; Sun, 31 Oct 2010 00:02:18 +0200 (IST) In-reply-to: <8739rnxtrj.fsf@gmail.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) 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:132204 Archived-At: > From: Jay Belanger > Cc: martin rudalics , emacs-devel@gnu.org > CC: jay.p.belanger@gmail.com > Date: Sat, 30 Oct 2010 16:20:16 -0500 > > > >> 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. It works on GNU/Linux because doc/misc/Makefile.in adds the -I../emacs switch to the `makeinfo' command line; this eliminates the need for the prefix. It should work on Windows as well, because doc/misc/makefile.w32-in does the same. I'm guessing that the above problem is due to something local on Martin's system, because it works for me, and no one else complained until now.