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