diff options
author | Jack Nagel <jacknagel@gmail.com> | 2011-12-16 00:21:21 -0600 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-02-08 18:58:36 +0000 |
commit | 336483a6cc5e593393651863944ded9c1ea24246 (patch) | |
tree | df3398a3de9cc983f862a68013d2b3ac68533d96 /doc | |
parent | 4ebb275ab7b6f71d5dbee348a1064b013bdbc862 (diff) | |
download | dbus-336483a6cc5e593393651863944ded9c1ea24246.tar.gz |
docs: correctly invoke man2html
man2html expects to find its input on stdin, so just passing the
filename will cause it to hang waiting for input.
[man2html 1.6g as shipped in Debian seems to be fine with files on the
command line, but apparently other versions aren't? -smcv]
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=43875
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 3fdb7803..591efc99 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -118,7 +118,7 @@ if DBUS_HAVE_MAN2HTML html_DATA += $(MAN_HTML_FILES) %.1.html: %.1 - $(AM_V_GEN)( $(MAN2HTML) $< > $@.tmp && mv $@.tmp $@ ) + $(AM_V_GEN)( $(MAN2HTML) < $< > $@.tmp && mv $@.tmp $@ ) endif if DBUS_CAN_UPLOAD_DOCS |