Edit

kc3-lang/automake/tests/vtexi.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-02-11 06:11:19
    Hash : d739f26b
    Message : Added some -I options. More bug fixes. More tests.

  • tests/vtexi.test
  • #!/bin/sh
    
    # Test for bug reported by Jim Meyering:
    # When I ran automake-0.29 on textutils,
    # I noticed that doc/Makefile.in had
    #   textutils.info: textutils.texi
    # instead of
    #   textutils.info: textutils.texi version.texi
    
    . $srcdir/defs
    
    cat > Makefile.am << 'END'
    info_TEXINFOS = textutils.texi
    END
    
    cat > textutils.texi << 'END'
    @include version.texi
    END
    
    # Required when using Texinfo.
    : > mdate-sh
    : > texinfo.tex
    
    $AUTOMAKE || exit 1
    
    grep '^textutils\.info: textutils\.texi version\.texi$' Makefile.in