* David Kastrup (2005-05-03) writes: > f) documentation proofreading. I am certain to have introduced > nonsense, and certainly stuff must be missing.
I could not find any significant problems. But I saw that the `auctex.dvi' and `auctex.pdf' targets don't work anymore. The following patch fixed things for me:
Index: Makefile.in =================================================================== RCS file: /cvsroot/auctex/auctex/doc/Makefile.in,v retrieving revision 1.25 diff -u -r1.25 Makefile.in --- Makefile.in 30 Apr 2005 22:43:58 -0000 1.25 +++ Makefile.in 5 May 2005 14:41:55 -0000 @@ -4,15 +4,18 @@ [EMAIL PROTECTED]@$(null) [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ +INFOINCLUDES=../preview/doc [EMAIL PROTECTED]@ @MAKEINFO_MACROS@ -MAKEINFOINC=$(MAKEINFO) -I ../preview/doc +MAKEINFOINC=$(MAKEINFO) -I $(INFOINCLUDES) [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ DESTDIR= [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ +TEXI2DVIINC=$(TEXI2DVI) -I $(INFOINCLUDES) [EMAIL PROTECTED]@ +TEXI2PDFINC=$(TEXI2PDF) -I $(INFOINCLUDES) MKINSTALLDIRS = ../mkinstalldirs [EMAIL PROTECTED]@ TEXIFILES = auctex.texi install.texi wininstall.texi intro.texi \ @@ -42,10 +45,10 @@ $(PDFTEX) tex-ref.tex auctex.dvi: $(TEXIFILES) - MAKEINFO="$(MAKEINFOINC)" $(TEXI2DVI) auctex.texi + $(TEXI2DVIINC) auctex.texi auctex.pdf: $(TEXIFILES) - MAKEINFO="$(MAKEINFOINC)" $(TEXI2PDF) auctex.texi + $(TEXI2PDFINC) auctex.texi # dvips spews two error lines. I don't know why. auctex.ps: auctex.dvi
Okay to commit? -- Ralf
_______________________________________________ auctex-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/auctex-devel
