Edit

kc3-lang/automake/tests/stamph.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-03-29 07:17:06
    Hash : 7025355e
    Message : do not allow stamp-h in AC_OUTPUT

  • tests/stamph.test
  • #! /bin/sh
    
    # Error if stamp-h appears in AC_OUTPUT line.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AM_PROG_INSTALL
    AC_OUTPUT(Makefile stamp-h)
    END
    
    : > Makefile.am
    
    $AUTOMAKE && exit 1
    exit 0