12345678910111213141516171819202122232425262728293031323334353637 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_PROG_CC
- END
- cat > Makefile.am << 'END'
- bin_PROGRAMS = foob@rquux
- END
- $ACLOCAL
- $AUTOMAKE
- grep foob.rquux Makefile.in
- grep foob@rquux Makefile.in
- grep 'foob[^@]rquux' Makefile.in && exit 1
- :
|