]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Use mdoc2html, -T html doesn't work at least with the groff 1.19.2 in
authorJoerg Sonnenberger <joerg.sonnenberger@gmail.com>
Sun, 14 Mar 2010 01:36:15 +0000 (20:36 -0500)
committerJoerg Sonnenberger <joerg.sonnenberger@gmail.com>
Sun, 14 Mar 2010 01:36:15 +0000 (20:36 -0500)
NetBSD.

XXX This should most likely use mandoc for the HTML output

SVN-Revision: 2031

doc/update.sh

index 1427d70e56027267f3737fc7766793c3aac2b1f4..8f4e619321080901be4184666d089ee05cd6fa09 100755 (executable)
@@ -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