Mercurial > hg > octave-lyh
changeset 17292:c8f94d9d34d0
tell makeinfo to search for includes in $(srcdir) when creating INSTLAL.OCTAVE
* doc/interpreter/Makefile.am (../../AUTHORS, ../../BUGS,
../../INSTALL.OCTAVE): Use -I $(srcdir) in makeinfo command.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 20 Aug 2013 07:43:10 -0400 |
parents | e6c0ac8ce5b6 |
children | f519560bfcb4 |
files | doc/interpreter/Makefile.am |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/interpreter/Makefile.am +++ b/doc/interpreter/Makefile.am @@ -225,19 +225,19 @@ cp $(srcdir)/contributors.texi contributors.texi; \ touch -r $(srcdir)/contributors.texi contributors.texi; \ fi - -$(MAKEINFO) -D AUTHORSONLY \ + -$(MAKEINFO) -D AUTHORSONLY -I $(srcdir) \ --no-validate --no-headers --no-split --output AUTHORS $< mv AUTHORS ../../AUTHORS ../../BUGS: bugs.texi rm -f BUGS - -$(MAKEINFO) -D BUGSONLY \ + -$(MAKEINFO) -D BUGSONLY -I $(srcdir) \ --no-validate --no-headers --no-split --output BUGS $< mv BUGS ../../BUGS ../../INSTALL.OCTAVE: install.texi rm -f INSTALL - -$(MAKEINFO) -D INSTALLONLY \ + -$(MAKEINFO) -D INSTALLONLY -I $(srcdir) \ --no-validate --no-headers --no-split --output INSTALL $< mv INSTALL ../../INSTALL.OCTAVE