12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #! /bin/sh
- required=GNUmake
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_CONFIG_FILES([sub/GNUmakefile])
- AC_OUTPUT
- END
- mkdir sub
- echo SUBDIRS = sub > Makefile.am
- cat > sub/GNUmakefile.am <<'EOF'
- dist_data_DATA = Makefile
- EOF
- echo 'this should not cause any problem' > sub/Makefile
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE
- ./configure
- $MAKE distcheck
|