123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #!/bin/sh
- nfig
- . test-init.sh
- cat >>configure.ac <<'END'
- AM_CONDITIONAL([COND], [:])
- AM_COND_IF([COND])
- _AM_COND_IF([COND])
- AC_OUTPUT
- END
- edit_configure_ac ()
- {
- sed "$@" < configure.ac >configure.tmp
- mv -f configure.tmp configure.ac
- rm -rf autom4te*.cache
- }
- : >Makefile.am
- $ACLOCAL
- AUTOMAKE_fails
- grep '^configure\.ac:8:.* condition stack' stderr
- edit_configure_ac 's/_AM_COND_IF/_AM_COND_ELSE/'
- AUTOMAKE_fails
- grep '^configure\.ac:7:.* else without if' stderr
- edit_configure_ac 's/_AM_COND_ELSE/_AM_COND_ENDIF/'
- AUTOMAKE_fails
- grep '^configure\.ac:7:.* endif without if' stderr
- edit_configure_ac 's/\(_AM_COND_ENDIF\).*/_AM_COND_IF\
- _AM_COND_ENDIF/'
- AUTOMAKE_fails
- grep '^configure\.ac:7:.* not enough arguments.* _AM_COND_IF' stderr
- grep '^configure\.ac:8:.* not enough arguments.* _AM_COND_ENDIF' stderr
- test 2 -eq $($FGREP -c 'not enough arguments' stderr)
- :
|