docs: Don't build empty docs for libfolks-internal.
authorTravis Reitter <travis.reitter@collabora.co.uk>
Wed, 26 Oct 2011 18:23:25 +0000 (11:23 -0700)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Wed, 26 Oct 2011 21:18:08 +0000 (14:18 -0700)
docs/Makefile.am

index 10f96ce..ebfda76 100644 (file)
@@ -64,7 +64,18 @@ valadoc_flags = \
        $(NULL)
 
 # folks documentation
-folks_doc_files = $(top_srcdir)/folks/*.vala
+folks_doc_files_blacklist = \
+       $(top_srcdir)/folks/internal.vala \
+       $(NULL)
+# this expands the list of files, so we can filter out elements
+folks_doc_files_all = \
+       $(wildcard $(top_srcdir)/folks/*.vala) \
+       $(NULL)
+# FIXME: sort the files manually to work around the native doclet portion of
+# bgo#662784
+folks_doc_files = \
+       $(sort \
+       $(filter-out $(folks_doc_files_blacklist),$(folks_doc_files_all)))
 folks_doc_deps = \
        gconf-2.0 \
        gmodule-2.0 \