blob: 2ba24f34a44e75b2f38c74a87587526db5286b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# $Id: html-manuals,v 1.3 2004/04/11 17:56:47 karl Exp $
# Test that all the distribution manuals can be converted to HTML.
: ${srcdir=.}
for manual in info.texi info-stnd.texi texinfo.txi; do
base=`echo $manual | sed 's/\.te*xi$//'`
../makeinfo --html -I$srcdir/../../doc -I../../doc --no-split \
$srcdir/../../doc/$manual -o $base.html \
|| exit 1
rm -f $base.html
done
|