Edit

kc3-lang/automake/tests/acoutnoq.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-05-18 00:29:32
    Hash : 08818d2d
    Message : Added dist-zip. Bug fixes. Check for PACKAGE, VERSION

  • tests/acoutnoq.test
  • #!/bin/sh
    
    # Test for bug reported by Jerome Santini.
    # If I put this line in my configure.in:
    # AC_OUTPUT(Makefile src/Makefile tests/Makefile, echo timestamp > stamp-h)dnl
    # automake is not happy:
    # [ ... ]
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(Makefile, [true])
    END
    
    : > Makefile.am
    
    $AUTOMAKE