diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2013-11-06 16:18:27 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-12-02 08:45:58 -0500 |
commit | c4d79a4799719f2b0cd354ee498aad605730c97e (patch) | |
tree | 7b24f21436dc2114798c7d396b2006d3c96bb462 /Documentation/DocBook | |
parent | c79a8d85d7f540e9dbe3e3111c41d14395a0c9e2 (diff) |
work around xmlto bug in htmldocs
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>
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r-- | Documentation/DocBook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index bc3d9f8c0a90..5cf621b78c5e 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile | |||
@@ -145,7 +145,7 @@ build_main_index = rm -rf $(main_idx); \ | |||
145 | cat $(HTML) >> $(main_idx) | 145 | cat $(HTML) >> $(main_idx) |
146 | 146 | ||
147 | quiet_cmd_db2html = HTML $@ | 147 | quiet_cmd_db2html = HTML $@ |
148 | cmd_db2html = xmlto xhtml $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \ | 148 | cmd_db2html = xmlto html $(XMLTOFLAGS) -o $(patsubst %.html,%,$@) $< && \ |
149 | echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \ | 149 | echo '<a HREF="$(patsubst %.html,%,$(notdir $@))/index.html"> \ |
150 | $(patsubst %.html,%,$(notdir $@))</a><p>' > $@ | 150 | $(patsubst %.html,%,$(notdir $@))</a><p>' > $@ |
151 | 151 | ||