123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #! /bin/sh
- required='gettext'
- . test-init.sh
- cat >> configure.ac << 'END'
- AM_GNU_GETTEXT
- AM_GNU_GETTEXT_VERSION([0.14.3])
- AC_OUTPUT
- END
- echo 'SUBDIRS = po intl' >Makefile.am
- mkdir po intl
- if ! $ACLOCAL && autopoint -n; then
- skip_ "too old gettext installation"
- fi
- AUTOMAKE_fails --add-missing
- grep '^configure\.ac:.*required file.*config.rpath' stderr
- : > config.rpath
- $AUTOMAKE
- :
|