10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
# Test that info.texi works with --no-headers (this includes node
|
|
# pointer defaulting).
|
|
|
|
unset TEXINFO_OUTPUT
|
|
: ${srcdir=.}
|
|
docdir=$srcdir/../../doc
|
|
|
|
../makeinfo --no-headers -o /dev/null -I$docdir info.texi
|