From: Stefano Lattarini Date: Wed, 19 Jun 2013 10:25:14 +0000 (+0200) Subject: tests: fix a spurious failure with Texinfo 5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45a2547f760805e9dcd9b1d8b0de36ea427f3c31;p=thirdparty%2Fautomake.git tests: fix a spurious failure with Texinfo 5 * t/txinfo-include.sh: Here. Signed-off-by: Stefano Lattarini --- diff --git a/t/txinfo-include.sh b/t/txinfo-include.sh index 8cdf59cfe..5bb8963c5 100644 --- a/t/txinfo-include.sh +++ b/t/txinfo-include.sh @@ -25,7 +25,7 @@ echo AC_OUTPUT >> configure.ac cat > Makefile.am << 'END' info_TEXINFOS = main.texi sub/more.texi main_TEXINFOS = one.texi two.texi three.texi -sub_more_TEXINFOS = sub/one.texi sub/two.texi +sub_more_TEXINFOS = sub/desc.texi sub/hist.texi END cat > main.texi << 'END' @@ -79,18 +79,18 @@ cat > sub/more.texi << 'END' * hist:: History of this program @end menu @end ifnottex -@include one.texi -@include two.texi +@include desc.texi +@include hist.texi @bye END -cat > sub/one.texi << 'END' +cat > sub/desc.texi << 'END' @node desc @chapter Description of this program It does something, really. END -cat > sub/two.texi << 'END' +cat > sub/hist.texi << 'END' @node hist @chapter History of this program It was written somehow.