diff options
Diffstat (limited to 'doc/update.sh')
-rw-r--r-- | doc/update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update.sh b/doc/update.sh index 9526d95ac9b32..1994eb3a76f71 100644 --- a/doc/update.sh +++ b/doc/update.sh @@ -80,7 +80,7 @@ for f in $MANPAGES; do outname="`basename $f`.html" echo >> Makefile echo $outname: $f >> Makefile - echo " groff -mdoc2html $f > $outname" >> Makefile + echo " groff -mdoc -T html $f > $outname" >> Makefile all="$all $outname" done echo $all >>Makefile @@ -113,5 +113,5 @@ cd .. (cd pdf && make) # Format all of the manpages to HTML (cd html && make) -# Format all of the manpages to Google Wiki syntax +# Format all of the manpages to wiki syntax (cd wiki && make) |