Edit

kc3-lang/automake/tests/colon7.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1998-09-30 11:26:36
    Hash : 3a356a00
    Message : * colon7.test: New file. * Makefile.am (TESTS): Added colon7.test.

  • tests/colon7.test
  • #! /bin/sh
    
    # Another test for a failing ":" in AC_OUTPUT.  Report from Maciej
    # Stachowiak.
    
    . $srcdir/defs || exit 1
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_INSTALL
    AC_OUTPUT(subdir/bar:subdir/foo \
       Makefile \
       subdir/Makefile
    )
    END
    
    : > Makefile.am
    
    mkdir subdir
    : > subdir/Makefile.am
    : > subdir/foo
    
    $AUTOMAKE