Edit

kc3-lang/automake/tests/fpinstall.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-05-23 16:05:41
    Hash : a3281f5b
    Message : Bug fix

  • tests/fpinstall.test
  • #! /bin/sh
    
    # Test for bug reported by Thomas Morgan.  If both fp_PROG_INSTALL and
    # AC_PROG_INSTALL appear in configure.in, bad error results.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    fp_PROG_INSTALL
    AC_OUTPUT(Makefile)
    END
    
    cat > Makefile.am <<'END'
    bin_SCRIPTS = zot
    END
    
    $AUTOMAKE || exit 1