Edit

kc3-lang/automake/tests/output4.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-12-08 00:29:12
    Hash : e2ebb8a7
    Message : fixed output4.test

  • tests/output4.test
  • #! /bin/sh
    
    # It's hard to believe there are so many AC_OUTPUT-related bugs.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(tests/Makefile tests/defs)
    END
    
    mkdir tests
    : > tests/defs.in
    : > tests/Makefile.am
    
    $AUTOMAKE || exit 1
    
    grep tests/defs.in tests/Makefile.in && exit 1
    exit 0