Edit

kc3-lang/automake/tests/cond6.test

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1998-08-17 05:33:12
    Hash : d14198e4
    Message : Fixed colon6.test. Added test for strange Tab bug

  • tests/cond6.test
  • #! /bin/sh
    
    # Test for an odd conditional bug.  Report from Matt Leach.
    
    . $srcdir/defs || exit 1
    
    echo 'AM_CONDITIONAL(FOO, true)' >> configure.in
    
    cat > Makefile.am << 'END'
    
    if FOO
    
    helpdir = $(prefix)/Help
    # The continuation line below must start with a Tab to see the bug.
    help_DATA = a b c d e \
    	f g h
    
    else
    
    helpdir = $(prefix)/help
    help_DATA = foo
    
    endif
    END
    
    $AUTOMAKE