Edit

kc3-lang/automake/tests/vtexi.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-02-27 17:57:37
    Hash : 5945f033
    Message : Updated all 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 || exit 1
    
    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