diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2009-06-10 16:32:14 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2009-06-10 16:32:14 +0100 |
commit | dc8913f12aae3ec6fcd3f054317c786dfe5f7788 (patch) | |
tree | c5b32ad7f980d4cd3b65dd501a3b3f64caa7e00c /doc | |
parent | cdd588d0774111f3f8975ac4643b5a77f728dbcc (diff) |
tools: update from telepathy-glib
This requires a minor change to the invocation: when making docs,
explicitly allow dangling references to interfaces.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index b6c81ab5..41c97bc9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -5,7 +5,9 @@ SPECS_DOC = mc-dbus-iface.html all-local: $(SPECS_DOC) $(SPECS_DOC): $(top_srcdir)/xml/all.xml $(wildcard $(top_srcdir)/xml/*.xml) $(top_srcdir)/tools/doc-generator.xsl - $(XSLTPROC) --xinclude --novalid $(top_srcdir)/tools/doc-generator.xsl $< > $@ + $(XSLTPROC) --xinclude --novalid \ + --param allow-undefined-interfaces "true()" \ + $(top_srcdir)/tools/doc-generator.xsl $< > $@ clean-local: rm -f $(SPECS_DOC) |