Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | # Test for bug reported by Jim Meyering:
|
---|
4 | # When I ran automake-0.29 on textutils,
|
---|
5 | # I noticed that doc/Makefile.in had
|
---|
6 | # textutils.info: textutils.texi
|
---|
7 | # instead of
|
---|
8 | # textutils.info: textutils.texi version.texi
|
---|
9 |
|
---|
10 | . $srcdir/defs || exit 1
|
---|
11 |
|
---|
12 | cat > Makefile.am << 'END'
|
---|
13 | info_TEXINFOS = textutils.texi
|
---|
14 | END
|
---|
15 |
|
---|
16 | cat > textutils.texi << 'END'
|
---|
17 | @include version.texi
|
---|
18 | @setfilename textutils.info
|
---|
19 | END
|
---|
20 |
|
---|
21 | # Required when using Texinfo.
|
---|
22 | : > mdate-sh
|
---|
23 | : > texinfo.tex
|
---|
24 |
|
---|
25 | $AUTOMAKE || exit 1
|
---|
26 |
|
---|
27 | grep '^textutils\.info: textutils\.texi version\.texi$' Makefile.in
|
---|
Note:
See
TracBrowser
for help on using the repository browser.