1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #! /bin/sh
- . test-init.sh
- for x in 1 2 3 4 5 6 7 8; do
- echo aaaaaaaaaaaaaaaaaaaaa
- done | compress -c >/dev/null \
- || skip_ "cannot find a working 'compress' program"
- errmsg=".*legacy .*'compress' .*deprecated"
- echo AUTOMAKE_OPTIONS = dist-tarZ > Makefile.am
- $ACLOCAL
- AUTOMAKE_fails -Wnone -Wobsolete
- grep "^Makefile\\.am:1:.*$errmsg" stderr
- cat > configure.ac <<END
- AC_INIT([$me], [1.0])
- AM_INIT_AUTOMAKE([no-dist-gzip dist-tarZ])
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
- END
- : > Makefile.am
- rm -rf autom4te*.cache
- $ACLOCAL
- AUTOMAKE_run -Wno-error
- grep "^configure\\.ac:2:.*$errmsg" stderr
- $AUTOCONF
- ./configure
- $MAKE distcheck
- test -f dist-tarz-1.0.tar.Z
- :
|