1234567891011121314151617181920212223242526272829303132 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- info_TEXINFOS = textutils.texi
- END
- echo '@setfilename textutils.frob' > textutils.texi
- : > texinfo.tex
- $ACLOCAL
- AUTOMAKE_fails
- grep 'textutils\.texi:1:.*textutils\.frob.*extension' stderr
- :
|