12345678910111213141516171819202122232425262728293031323334353637383940 |
- #! /bin/sh
- . test-init.sh
- echo AC_OUTPUT >> configure.ac
- cat > Makefile.am << 'END'
- EXTRA_DIST=foo
- foo:
- mkdir foo
- touch foo/bar
- END
- $ACLOCAL
- $AUTOMAKE
- $AUTOCONF
- mkdir build
- cd build
- ../configure
- $MAKE distdir
- :
|