Edit

kc3-lang/automake/tests/subdir.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/subdir.test
  • #! /bin/sh
    
    # Test to make sure install-sh and mkinstalldirs correctly found in
    # subdirs.
    
    . $srcdir/defs || exit 1
    
    mkdir zot
    
    cat > configure.in << 'END'
    PACKAGE=nonesuch
    VERSION=nonesuch
    AC_ARG_PROGRAM
    AC_PROG_MAKE_SET
    fp_PROG_INSTALL
    AC_OUTPUT(Makefile zot/Makefile)
    END
    
    cat > Makefile.am << 'END'
    SUBDIRS = zot
    END
    
    cat > zot/Makefile.am << 'END'
    pkgdata_DATA =
    END
    
    $AUTOMAKE