build: Redirect xsltproc to a directory

Apparently, xsltproc recognizes a directory if it has a '/' at the end
of its path, and not by doing the sensible thing and stat()'ing the
argument for the --output option.
This commit is contained in:
Emmanuele Bassi 2010-06-30 13:26:32 +01:00
parent 40c45ef29b
commit 268bfccd28

View File

@ -18,7 +18,7 @@ pdf-build.stamp: clutter-cookbook.xml
html-build.stamp: clutter-cookbook.xml
$(mkinstalldirs) html \
&& $(XSLTPROC) --nonet --xinclude -o html \
&& $(XSLTPROC) --nonet --xinclude -o ./html/ \
--path $(top_srcdir)/doc/common \
--path . \
--stringparam gtkdoc.bookname "clutter-cookbook" \