From 268bfccd28b6ccca60c9505cd3ddc009549c7484 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 30 Jun 2010 13:26:32 +0100 Subject: [PATCH] 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. --- doc/cookbook/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cookbook/Makefile.am b/doc/cookbook/Makefile.am index be6ad7372..9b252cb28 100644 --- a/doc/cookbook/Makefile.am +++ b/doc/cookbook/Makefile.am @@ -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" \