From: Glenn Morris Date: Mon, 4 Oct 2010 00:55:42 +0000 (-0700) Subject: * doc/lispref/Makefile.in ($(infodir)/elisp): Fix -I typo. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~46^2~195 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8cce34d087ea3dee6e8e6f5272dc3b403cf5cd35;p=emacs.git * doc/lispref/Makefile.in ($(infodir)/elisp): Fix -I typo. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 54df508e13c..3cb96fe8fbe 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -2,6 +2,7 @@ * Makefile.in (dvi, pdf, $(infodir)): New targets. ($(infodir)/elisp): Ensure target directory exists. Use $@. + Fix -I typo. (clean): No 'make.out' or 'core' files. (.PHONY): Declare clean rules. (maintainer-clean): Delete pdf file. Guard against cd failures. diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index 472cc5b1406..7ef19febbad 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in @@ -100,9 +100,8 @@ pdf: elisp.pdf $(infodir): mkdir $@ -## FIXME ? -I$infodir is that right, or should it be texinfodir? $(infodir)/elisp: $(infodir) $(srcs) - cd $(srcdir); $(MAKEINFO) -I. -I$(infodir) elisp.texi -o $@ + cd $(srcdir); $(MAKEINFO) -I. -I$(texinfodir) elisp.texi -o $@ elisp.dvi: $(srcs) $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $(srcdir)/elisp.texi