1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #! /bin/sh
- . test-init.sh
- cat >>configure.ac <<'END'
- AC_OUTPUT
- END
- : >Makefile.am
- : >AUTHORS
- : >ChangeLog
- : >NEWS
- : >README
- cat >.autom4te.cfg <<'END'
- begin-language: "Autoconf"
- args: --no-cache
- end-language: "Autoconf"
- begin-language: "Autoconf-without-aclocal-m4"
- args: --no-cache
- end-language: "Autoconf-without-aclocal-m4"
- END
- $ACLOCAL
- $AUTOCONF
- rm -f missing install-sh
- $AUTOMAKE --add-missing --copy 2>stderr || { cat stderr >&2; exit 1; }
- cat stderr >&2
- for i in 1 2 3 4 5 6; do
- rm -f missing install-sh INSTALL COPYING
-
- $AUTOMAKE --add-missing --copy 2>&1 >/dev/null |
- grep -v /dev/null |
- diff - stderr
- done
|