source: trunk/essentials/sys-devel/automake-1.4/tests/cond6.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 379 bytes
Line 
1#! /bin/sh
2
3# Test for an odd conditional bug. Report from Matt Leach.
4
5. $srcdir/defs || exit 1
6
7echo 'AM_CONDITIONAL(FOO, true)' >> configure.in
8
9cat > Makefile.am << 'END'
10
11if FOO
12
13helpdir = $(prefix)/Help
14# The continuation line below must start with a Tab to see the bug.
15help_DATA = a b c d e \
16 f g h
17
18else
19
20helpdir = $(prefix)/help
21help_DATA = foo
22
23endif
24END
25
26$AUTOMAKE
Note: See TracBrowser for help on using the repository browser.