Edit

kc3-lang/automake/tests/comment3.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 2001-05-17 05:31:05
    Hash : 6059e528
    Message : For PR automake/174: * tests/Makefile.am (TESTS): Added comment3.test. (XFAIL_TESTS): Likewise. * tests/comment3.test: New file.

  • tests/comment3.test
  • #! /bin/sh
    
    # Make sure that `#' after a tab is a failure.
    # The Tru64 Unix V5.1 system make will pass these to the
    # shell, which in turn can't find `#' as a command.
    # Sigh.  Some vendors must be destroyed.
    
    . $srcdir/defs || exit 1
    
    cat > Makefile.am << 'END'
    install-data-local:
    	# Tru64 Unix must die
    END
    
    $AUTOMAKE && exit 1
    exit 0