1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #! /bin/sh
- . test-init.sh
- { echo 'm4_include([defs.m4])'
- cat configure.ac
- echo 'AC_OUTPUT'
- } > t
- mv -f t configure.ac
- cat > Makefile.am <<'END'
- .PHONY: test
- test: distdir
- ls -l $(distdir)
- test ! -f $(distdir)/aclocal.m4
- echo $(DISTFILES) | grep 'aclocal\.m4' && exit 1; :
- echo $(DIST_COMMON) | grep 'aclocal\.m4' && exit 1; :
- check-local: test
- END
- : > defs.m4
- $ACLOCAL
- mv -f aclocal.m4 defs.m4
- $AUTOMAKE
- $AUTOCONF
- ./configure
- $MAKE test
- $MAKE distcheck
- :
|