* configure.in: Upped to version 1.4k.
[automake.git] / tests / cond6.test
blob7ea2510fb68031b0864f94994aa61f9a35952feb
1 #! /bin/sh
3 # Test for an odd conditional bug. Report from Matt Leach.
5 . $srcdir/defs || exit 1
7 echo 'AM_CONDITIONAL(FOO, true)' >> configure.in
9 cat > Makefile.am << 'END'
11 if FOO
13 helpdir = $(prefix)/Help
14 # The continuation line below must start with a Tab to see the bug.
15 help_DATA = a b c d e \
16 f g h
18 else
20 helpdir = $(prefix)/help
21 help_DATA = foo
23 endif
24 END
26 $AUTOMAKE