build: Redirect xsltproc to a directory
authorEmmanuele Bassi <ebassi@linux.intel.com>
Wed, 30 Jun 2010 12:26:32 +0000 (13:26 +0100)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Wed, 30 Jun 2010 12:26:32 +0000 (13:26 +0100)
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

index be6ad73..9b252cb 100644 (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" \