diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-03 17:55:42 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-03 17:55:42 -0700 |
commit | 8cce34d087ea3dee6e8e6f5272dc3b403cf5cd35 (patch) | |
tree | e1a9041b970cf4978d80f9641d5e04583f97624f | |
parent | 0264072dee05ee304c3a4506df1ead13cca91668 (diff) | |
download | emacs-8cce34d087ea3dee6e8e6f5272dc3b403cf5cd35.tar.gz |
* doc/lispref/Makefile.in ($(infodir)/elisp): Fix -I typo.
-rw-r--r-- | doc/lispref/ChangeLog | 1 | ||||
-rw-r--r-- | doc/lispref/Makefile.in | 3 |
2 files changed, 2 insertions, 2 deletions
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 |