1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac <<EOF
- AC_CONFIG_FILES([one/Makefile two/Makefile])
- AC_OUTPUT
- EOF
- mkdir one
- mkdir two
- echo 'SUBDIRS = one two' > Makefile.am
- echo 'info_TEXINFOS = mumble.texi' > one/Makefile.am
- cat >one/mumble.texi <<'END'
- @setfilename mumble.info
- @include version.texi
- END
- cp one/Makefile.am one/mumble.texi two
- $ACLOCAL
- $AUTOMAKE --add-missing --copy
- test -f one/mdate-sh
- test -f one/texinfo.tex
- test -f two/mdate-sh
- test -f two/texinfo.tex
- :
|