From 533b13bfc1d9c8960ac7359b07040c82df6ab63a Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 16 Feb 2015 12:43:34 +0000 Subject: [PATCH] Fix out-of-tree ducktype build ducktype defaults to converting foo/bar.duck to foo/bar.page, but in an out-of-tree build, it should convert $srcdir/foo/bar.duck to ${builddir}/foo/bar.page instead. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=88994 --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 12c25cf..f875dc2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -106,7 +106,7 @@ if DBUS_DUCKTYPE_DOCS_ENABLED html_DATA += $(YELP_HTML) $(YELP_STATIC_HTML) %.page: %.duck - $(DUCKTYPE) $< + $(DUCKTYPE) -o $@ $< %.html: %.page $(YELP_BUILD) html $< $(YELP_STATIC_HTML): $(YELP_HTML) -- 2.1.4