source: trunk/essentials/sys-devel/automake-1.4/tests/vtexi.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 551 bytes
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
12cat > Makefile.am << 'END'
13info_TEXINFOS = textutils.texi
14END
15
16cat > textutils.texi << 'END'
17@include version.texi
18@setfilename textutils.info
19END
20
21# Required when using Texinfo.
22: > mdate-sh
23: > texinfo.tex
24
25$AUTOMAKE || exit 1
26
27grep '^textutils\.info: textutils\.texi version\.texi$' Makefile.in
Note: See TracBrowser for help on using the repository browser.