1234567891011121314151617181920212223242526272829303132333435363738 |
- #! /bin/sh
- . test-init.sh
- for ac_init_args in '' '([x])'; do
- for am_init_args in '' '([1.10])'; do
- rm -rf aclocal.m4 autom4te*.cache
- unindent >configure.ac <<END
- AC_INIT$ac_init_args
- AM_INIT_AUTOMAKE$am_init_args
- END
- cat configure.ac
-
- ($ACLOCAL && $AUTOCONF) 2>stderr && { cat stderr >&2; exit 1; }
- cat stderr >&2
- $FGREP AC_PACKAGE_VERSION stderr && exit 1
- grep 'configure\.ac:.* AC_INIT .*arguments' stderr
- done
- done
- :
|