1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #! /bin/sh
- . test-init.sh
- : > Makefile.am
- rm -f install-sh
- mkdir frob
- mv Makefile.am configure.ac frob/
- cd frob
- $ACLOCAL
- $AUTOMAKE --add-missing >output 2>&1 || { cat output; exit 1; }
- cat output
- grep '/.*/' output && exit 1
- test -f install-sh
- :
|