Edit

kc3-lang/automake/tests/acoutput.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-02-11 00:35:29
    Hash : e24e3bdc
    Message : Beginnings of test suite

  • tests/acoutput.test
  • #!/bin/sh
    
    # Test for bug when AC_OUTPUT has 2 args on the same line, eg:
    #   AC_OUTPUT([Makefile automake tests/Makefile],[chmod +x automake])
    
    . $srcdir/defs
    
    cat > configure.in << 'END'
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT([Makefile], [true])
    END
    
    : > Makefile.am
    
    $AUTOMAKE