1234567891011121314151617181920212223242526272829303132 |
- #! /bin/sh
- . test-init.sh
- rm -f install-sh
- ln -s Zardoz install-sh || skip_ "cannot create broken symlinks"
- : > Makefile.am
- $ACLOCAL
- $AUTOMAKE --add-missing
- test -f install-sh
- test ! -e Zardoz
- :
|