12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #! /bin/sh
- . test-init.sh
- cat > configure.ac <<END
- AC_INIT([$me], [1.0])
- AM_INIT_AUTOMAKE([tar-ustar])
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
- END
- : > Makefile.am
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- ./configure
- grep 'am__tar' Makefile
- if grep '^am__tar = false' Makefile; then
- skip_ "cannot find proper archiver program"
- fi
- $MAKE distcheck
- test -f "$distdir.tar.gz"
- :
|