work around xmlto bug in htmldocs
authorRobert P. J. Day <rpjday@crashcourse.ca>
Wed, 6 Nov 2013 21:18:27 +0000 (13:18 -0800)
committerJiri Kosina <jkosina@suse.cz>
Mon, 2 Dec 2013 13:45:58 +0000 (14:45 +0100)
Trying to generate xhtml causes all functions to show up with a prefix
of "fsfunc" in the output, so just back off to html until someone
fixes the toolchain.

Note that this is not a problem with kernel-doc, it's an issue with
however "xmlto" renders xhtml output.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Documentation/DocBook/Makefile

index bc3d9f8c0a9018fca305ce3d27920fb39be7c04a..5cf621b78c5e0335810f0e36725d9464d57e2354 100644 (file)
@@ -145,7 +145,7 @@ build_main_index = rm -rf $(main_idx); \
                   cat $(HTML) >> $(main_idx)
 
 quiet_cmd_db2html = HTML    $@
-      cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
+      cmd_db2html = xmlto html $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \
                echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \
         $(patsubst %.html,%,$(notdir $@))</a><p>' > $@
 
This page took 0.024784 seconds and 5 git commands to generate.