Forum OpenACS Development: Re: Docbook

Collapse
14: Re: Docbook (response to 13)
Posted by Luis Armando Arriola on
Here are the contents of the Makefile:

# A very simple Makefile to generate the HTML docs

# Paths
XSLTPROC=/usr/bin/xsltproc
HTMLDOC=/usr/bin/htmldoc
XSL=../../../acs-core-docs/www/xml/openacs.xsl

all: html

prelim:
        cp -u *.png ..

html: prelim
        cd .. ; $(XSLTPROC) $(XSL) xml/index.xml

Collapse
15: Re: Docbook (response to 14)
Posted by Andrei Popov on
well, that does look innocent enough.  and what happens if you manually run xsltproc ../../../acs-core-docs/www/xml/openacs.xsl xml/index.xml?  same xpath error or not?

other than suggesting to reinstall libxml -- to ensure that all libs are correct, etc. i can't really suggest more, i am afraid...

Collapse
16: Re: Docbook (response to 15)
Posted by Luis Armando Arriola on
Thanks for your help.

I manually run xsltproc as you suggested and it went fine without the error.

I don't know what conflict had when called from the Makefile.