Edit

kc3-lang/automake/tests/noinst.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-04-26 04:43:26
    Hash : 76290aa7
    Message : More bug fixes

  • tests/noinst.test
  • #! /bin/sh
    
    # Check to make sure "make install" will build all in directory with
    # nothing to install.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    all-local:
    	exit 1
    END
    
    $AUTOMAKE || exit 1
    
    # "make install" should fail here if there is a bug.
    make -f Makefile.in install && exit 1
    
    exit 0