emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem building emacs-lisp-intro.dvi.


From: Robert J. Chassell
Subject: Re: Problem building emacs-lisp-intro.dvi.
Date: Wed, 23 Aug 2006 19:11:14 +0000 (UTC)

   > So the question here is whether texi2dvi invokes TeX in a way that
   > would find texinfo.tex in a directory mentione in the -I switch.

   \input and @include use the same search path.

Thanks!  Am I correct in thinking that means I can change
emacs-lisp-intro.texi from
    \input ../man/texinfo
to
    \input texinfo

and modify emacs/lispintro/Makefile.in
from

    TEXI2DVI = texi2dvi
to 
    TEXI2DVI = texi2dvi -I
    TEXI2DVI_INPUTS=$(srcdir)/../man

and from

    emacs-lisp-intro.dvi: ${INFO_SOURCES}
            $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
to
    emacs-lisp-intro.dvi: ${INFO_SOURCES}
            $(ENVADD) $(TEXI2DVI) $(TEXI2DVI_INPUTS) 
$(srcdir)/emacs-lisp-intro.texi

?

To test, I will do a distclean, configure, and bootstrap.

-- 
    Robert J. Chassell                         
    address@hidden                         GnuPG Key ID: 004B4AC8
    http://www.rattlesnake.com                  http://www.teak.cc




reply via email to

[Prev in Thread] Current Thread [Next in Thread]