git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix issue with long lines with comments in lsearch. fixes: #894
[exim.git]
/
doc
/
doc-scripts
/
BuildHTML
1
#! /bin/sh
2
# $Cambridge: exim/doc/doc-scripts/BuildHTML,v 1.1 2004/10/07 15:04:35 ph10 Exp $
3
4
if [ $# != 1 ]; then
5
echo "*** Usage: BuildHTML <Exim version>"
6
exit 1
7
fi
8
9
g2h -split chapter filter.src "Exim Filter Specification"
10
g2h -split chapter spec.src "Exim $1 Specification"
11
12
# End