123456789101112131415161718192021222324252627282930313233343536373839 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac <<END
- AC_CONFIG_FILES([zardoz:one:two:three])
- AC_OUTPUT
- END
- : > Makefile.am
- : > one
- : > two
- : > three
- $ACLOCAL
- $AUTOMAKE
- $FGREP 'zardoz:one:two' Makefile.in && exit 1
- exit 0
|