From: Joerg Sonnenberger Date: Sun, 14 Mar 2010 01:36:15 +0000 (-0500) Subject: Use mdoc2html, -T html doesn't work at least with the groff 1.19.2 in X-Git-Tag: v3.0.0a~1154 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=008335add586b1d66cea5d5eb7adf9a4f9dce293;p=thirdparty%2Flibarchive.git Use mdoc2html, -T html doesn't work at least with the groff 1.19.2 in NetBSD. XXX This should most likely use mandoc for the HTML output SVN-Revision: 2031 --- diff --git a/doc/update.sh b/doc/update.sh index 1427d70e5..8f4e61932 100755 --- a/doc/update.sh +++ b/doc/update.sh @@ -71,8 +71,8 @@ all="all:" for f in $MANPAGES; do outname="`basename $f`.html" echo >> Makefile - echo $outname: ../mdoc2man.awk $f >> Makefile - echo " groff -mdoc -T html $f > $outname" >> Makefile + echo $outname: $f >> Makefile + echo " groff -mdoc2html $f > $outname" >> Makefile all="$all $outname" done echo $all >>Makefile