diff options
| author | Glenn Morris | 2010-10-10 18:57:48 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-10 18:57:48 -0700 |
| commit | df187c6252439abcc958bbeb507344d6781b46e7 (patch) | |
| tree | d2b9b83cda266c1caff4dd9c58bacbff28ab9a1a | |
| parent | 234db610c60ef933d26c73d5f72cad62e9547f77 (diff) | |
| download | emacs-df187c6252439abcc958bbeb507344d6781b46e7.tar.gz emacs-df187c6252439abcc958bbeb507344d6781b46e7.zip | |
Add explicit -I$srcdir to makeinfo in some doc/ Makefiles.
* doc/emacs/Makefile.in (MAKEINFO): Add explicit -I$srcdir.
* doc/lispintro/Makefile.in (MAKEINFO): Add explicit -I$srcdir.
* doc/lispref/Makefile.in (MAKEINFO): Add explicit -I$srcdir.
| -rw-r--r-- | doc/emacs/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/emacs/Makefile.in | 4 | ||||
| -rw-r--r-- | doc/lispintro/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 2 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 2 |
6 files changed, 9 insertions, 4 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 5899e273124..5c0ff3da206 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-10-11 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (MAKEINFO): Add explicit -I$srcdir. | ||
| 4 | |||
| 3 | * Makefile.in (.texi.dvi): Remove unnecessary suffix rule. | 5 | * Makefile.in (.texi.dvi): Remove unnecessary suffix rule. |
| 4 | (DVIPS): New variable. | 6 | (DVIPS): New variable. |
| 5 | (.PHONY): Add html, ps. | 7 | (.PHONY): Add html, ps. |
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index 1b13c042a8b..cdbd718a58d 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in | |||
| @@ -39,7 +39,7 @@ texinfodir = $(srcdir)/../misc | |||
| 39 | 39 | ||
| 40 | # The makeinfo program is part of the Texinfo distribution. | 40 | # The makeinfo program is part of the Texinfo distribution. |
| 41 | # Use --force so that it generates output even if there are errors. | 41 | # Use --force so that it generates output even if there are errors. |
| 42 | MAKEINFO = makeinfo --force | 42 | MAKEINFO = makeinfo --force -I $(srcdir) |
| 43 | 43 | ||
| 44 | TEXI2DVI = texi2dvi | 44 | TEXI2DVI = texi2dvi |
| 45 | TEXI2PDF = texi2pdf | 45 | TEXI2PDF = texi2pdf |
| @@ -129,7 +129,7 @@ ps: emacs.ps | |||
| 129 | 129 | ||
| 130 | $(infodir)/emacs: ${EMACSSOURCES} | 130 | $(infodir)/emacs: ${EMACSSOURCES} |
| 131 | $(mkinfodir) | 131 | $(mkinfodir) |
| 132 | $(MAKEINFO) $< -o $@ | 132 | $(MAKEINFO) -o $@ $< |
| 133 | 133 | ||
| 134 | emacs.dvi: ${EMACSSOURCES} | 134 | emacs.dvi: ${EMACSSOURCES} |
| 135 | $(ENVADD) $(TEXI2DVI) $< | 135 | $(ENVADD) $(TEXI2DVI) $< |
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index cd63ecc10db..101e5b1d8b7 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | (ps, emacs-lisp-intro.ps): New targets. | 5 | (ps, emacs-lisp-intro.ps): New targets. |
| 6 | (clean): Delete ps file. | 6 | (clean): Delete ps file. |
| 7 | (MAKEINFO): Use --force like the other doc/ Makefiles do. | 7 | (MAKEINFO): Use --force like the other doc/ Makefiles do. |
| 8 | Add explicit -I$srcdir. | ||
| 8 | 9 | ||
| 9 | 2010-10-09 Glenn Morris <rgm@gnu.org> | 10 | 2010-10-09 Glenn Morris <rgm@gnu.org> |
| 10 | 11 | ||
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index c8bd224cf70..366a0a10e5d 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -28,7 +28,7 @@ infodir = $(srcdir)/../../info | |||
| 28 | # Directory with the (customized) texinfo.tex file. | 28 | # Directory with the (customized) texinfo.tex file. |
| 29 | texinfodir = $(srcdir)/../misc | 29 | texinfodir = $(srcdir)/../misc |
| 30 | 30 | ||
| 31 | MAKEINFO = makeinfo --force | 31 | MAKEINFO = makeinfo --force -I $(srcdir) |
| 32 | TEXI2DVI = texi2dvi | 32 | TEXI2DVI = texi2dvi |
| 33 | TEXI2PDF = texi2pdf | 33 | TEXI2PDF = texi2pdf |
| 34 | DVIPS = dvips | 34 | DVIPS = dvips |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 213dfa7147b..be3e56880f5 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-10-11 Glenn Morris <rgm@gnu.org> | 1 | 2010-10-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (MAKEINFO): Add explicit -I$srcdir. | ||
| 4 | |||
| 3 | * Makefile.in (DVIPS): New variable. | 5 | * Makefile.in (DVIPS): New variable. |
| 4 | (.PHONY): Add html, ps. | 6 | (.PHONY): Add html, ps. |
| 5 | (html, elisp.html, ps, elisp.ps): New targets. | 7 | (html, elisp.html, ps, elisp.ps): New targets. |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index 4ba9d829340..f1caa9abfa2 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -32,7 +32,7 @@ texinfodir = $(srcdir)/../misc | |||
| 32 | # Directory with emacsver.texi. | 32 | # Directory with emacsver.texi. |
| 33 | emacsdir = $(srcdir)/../emacs | 33 | emacsdir = $(srcdir)/../emacs |
| 34 | 34 | ||
| 35 | MAKEINFO = makeinfo --force -I $(emacsdir) | 35 | MAKEINFO = makeinfo --force -I $(emacsdir) -I $(srcdir) |
| 36 | TEXI2DVI = texi2dvi | 36 | TEXI2DVI = texi2dvi |
| 37 | TEXI2PDF = texi2pdf | 37 | TEXI2PDF = texi2pdf |
| 38 | DVIPS = dvips | 38 | DVIPS = dvips |