12345678910111213141516171819202122232425262728293031323334353637 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AM_PROG_AR
- END
- $ACLOCAL
- $AUTOCONF
- st=0; ./configure AR=/bin/false >stdout 2>stderr || st=$?
- cat stdout
- cat stderr >&2
- test $st -eq 1
- grep '^checking.* archiver .*interface.*\.\.\. unknown' stdout
- grep '^configure: error: could not determine /bin/false interface' stderr
- ls *conftest* && exit 1
- :
|