| Line | |
|---|
| 1 | #! /bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Test for bug reported by Glenn Amerine:
|
|---|
| 4 | # When automake sees version.texi is being included by a texi file,
|
|---|
| 5 | # version.texi gets listed as a dependency for the .info file but
|
|---|
| 6 | # not the .dvi file.
|
|---|
| 7 |
|
|---|
| 8 | . $srcdir/defs || exit 1
|
|---|
| 9 |
|
|---|
| 10 | cat > Makefile.am << 'END'
|
|---|
| 11 | info_TEXINFOS = zardoz.texi
|
|---|
| 12 | END
|
|---|
| 13 |
|
|---|
| 14 | cat > zardoz.texi << 'END'
|
|---|
| 15 | @setfilename zardoz
|
|---|
| 16 | @include version.texi
|
|---|
| 17 | END
|
|---|
| 18 |
|
|---|
| 19 | # Required when using Texinfo.
|
|---|
| 20 | : > mdate-sh
|
|---|
| 21 | : > texinfo.tex
|
|---|
| 22 |
|
|---|
| 23 | $AUTOMAKE || exit 1
|
|---|
| 24 |
|
|---|
| 25 | grep '^zardoz\.dvi:' Makefile.in
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.