1234567891011121314151617181920212223242526272829303132 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- noinst_SCRIPTS = hostname
- include_HEADERS = gettext-po.h
- BUILT_SOURCES = po-hash-gen.c
- END
- $ACLOCAL
- $AUTOMAKE
- grep 'install-recursive' Makefile.in && exit 1
- :
|