blob: 6b961846f3886b192a3d101d445cd11f2e52a413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Test that info.texi works with --no-headers (this includes node
# pointer defaulting).
# maybe need "nul" sometimes? Not clear.
: ${nulldev=/dev/null}
unset TEXINFO_OUTPUT
: ${srcdir=.}
docdir=$srcdir/../../doc
../makeinfo --no-headers -o $nulldev -I$docdir info.texi
|