blob: 7998c3313ee68ebfe4f1d86b28156069c7818fd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
#
# Libreboot documentation build script: texinfo-gz
#
basedir="docs/manual/"
outfile="${basedir}libreboot.texi.gz"
texinfo_src="docs/libreboot.texi"
[ -d docs/manual ] || mkdir docs/manual
echo "Making $outfile..."
gzip -f -9 -c $texinfo_src > $outfile
echo "Done."
|