Edit

kc3-lang/automake/tests/colon.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-08-04 19:13:40
    Hash : d7517012
    Message : Bug and doc fixes

  • tests/colon.test
  • #! /bin/sh
    
    # Test for bug reported by Nyul Laszlo.  When using the ":" syntax in
    # AC_OUTPUT, Automake fails to find the correct file.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(Makefile foo.h:foo.hin)
    END
    
    : > Makefile.am
    : > foo.hin
    : > stamp-h.in
    
    $AUTOMAKE