Edit

kc3-lang/automake/tests/colon2.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-12-06 03:31:22
    Hash : 0df76f10
    Message : bug fixes for : mode support

  • tests/colon2.test
  • #! /bin/sh
    
    # Make sure ":" works with files automake generates.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(Makefile:zardoz.in)
    END
    
    : > zardoz.am
    
    $AUTOMAKE || exit 1
    
    # We actually check several things here.
    test -f zardoz.in || exit 1
    grep '^zardoz:' zardoz.in && exit 1
    exit 0