summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg.sonnenberger@gmail.com>2010-03-13 20:36:15 -0500
committerJoerg Sonnenberger <joerg.sonnenberger@gmail.com>2010-03-13 20:36:15 -0500
commit008335add586b1d66cea5d5eb7adf9a4f9dce293 (patch)
treee96dbf31b06a1c7af69977460ae5a68cec0cc629 /doc
parent1fb2ae5cc0d9d5d12bd8bd7ea4a88f138072d6c4 (diff)
downloadlibarchive-008335add586b1d66cea5d5eb7adf9a4f9dce293.tar.gz
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
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/update.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/update.sh b/doc/update.sh
index 1427d70e..8f4e6193 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