Documentation: replace http by https where possible
[exim.git] / doc / doc-scripts / BuildInfo
CommitLineData
495ae4b0 1#! /bin/sh
495ae4b0
PH
2
3if [ "$1" = "filter" ]; then
4g2t -filter filter.src >filter.texinfo
5if [ $? != 0 ]; then exit 1; fi
6cd info
7makeinfo filter.texinfo
8if [ $? != 0 ]; then exit 1; fi
9echo ""
10echo info filter.info
11echo ""
12info -f ./filter.info
13exit
14fi
15
16if [ "$1" = "" ]; then
17g2t spec.src >spec.texinfo
18if [ $? != 0 ]; then exit 1; fi
19cd info
20makeinfo spec.texinfo
21if [ $? != 0 ]; then exit 1; fi
22echo ""
23echo info spec.info
24echo ""
25info -f ./spec.info
26exit
27fi
28
29echo "***Usage: null or filter argument required"
30
31####