summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2010-03-04 22:21:02 +0100
committerAurelien Jarno <aurelien@aurel32.net>2010-03-06 23:07:09 +0100
commit01668d98a380896f0de09ba3f5809d4dd44fa71d (patch)
tree1420c38533c6bcc5cee67e4cefdf069eac9a169c /configure
parent99aba0c41b6e817661ddf2ad90111c2d8af00050 (diff)
downloadqemu-01668d98a380896f0de09ba3f5809d4dd44fa71d.tar.gz
Documentation: Modify rule for html output (better looking output format)
To create html output from texi input, texi2html was used. Output from makeinfo looks cleaner, so replace the old rule and use makeinfo now. For those who want to use their own variant of html output, the macros MAKEINFO and MAKEINFOFLAGS allow customisation. Option "-I ." is not needed (the current directory is searched by default), so remove it. Please note that the build requirements changed, too: makeinfo is required for doc builds. texi2html is no longer used. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 8eb5f5be9d..f55baf09f3 100755
--- a/configure
+++ b/configure
@@ -1750,7 +1750,7 @@ fi
# Check if tools are available to build documentation.
if test "$docs" != "no" ; then
- if has texi2html && has pod2man; then
+ if has makeinfo && has pod2man; then
docs=yes
else
if test "$docs" = "yes" ; then