Mercurial > hg > octave-lyh
changeset 9903:3211ec426324
Correct Makefile.am to allow VPATH builds of documentation
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Wed, 02 Dec 2009 16:32:40 -0800 |
parents | 2929c453af8f |
children | f0f19b51b5d0 |
files | doc/ChangeLog doc/interpreter/Makefile.am |
diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2009-12-02 Rik <octave@nomad.inbox5.com> + + * interpreter/Makefile.am: Correct Makefile.am to allow VPATH builds of + documentation + 2009-12-01 Rik <octave@nomad.inbox5.com> * faq/Makefile.am, doc/interpreter/bugs.txi, doc/interpreter/install.txi:
--- a/doc/interpreter/Makefile.am +++ b/doc/interpreter/Makefile.am @@ -28,7 +28,9 @@ TEXINFO_TEX = ../texinfo.tex -TEXINPUTS := "..$(PATH_SEPARATOR)$(srcdir)$(PATH_SEPARATOR)$(srcdir)/..$(PATH_SEPARATOR)$(TEXINPUTS)$(PATH_SEPARATOR)" +## Extra PATH_SEPARATOR at start and end of list is currently required +## due to weak parsing by texi2XXX scripts. (12/02/09) +TEXINPUTS := "$(PATH_SEPARATOR)..$(PATH_SEPARATOR)$(srcdir)/..$(PATH_SEPARATOR)$(srcdir)$(PATH_SEPARATOR)$(TEXINPUTS)$(PATH_SEPARATOR)" export TEXINPUTS TEXMFCNF := "..$(PATH_SEPARATOR)$(srcdir)$(PATH_SEPARATOR)$(srcdir)/..$(PATH_SEPARATOR)$(PATH_SEPARATOR)$(TEXMFCNF)$(PATH_SEPARATOR)"