source:
trunk/essentials/sys-devel/automake-1.4/tests/cond6.test
Last change on this file was 3124, checked in by , 18 years ago | |
---|---|
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 | |
7 | echo 'AM_CONDITIONAL(FOO, true)' >> configure.in |
8 | |
9 | cat > Makefile.am << 'END' |
10 | |
11 | if FOO |
12 | |
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 |
17 | |
18 | else |
19 | |
20 | helpdir = $(prefix)/help |
21 | help_DATA = foo |
22 | |
23 | endif |
24 | END |
25 | |
26 | $AUTOMAKE |
Note:
See TracBrowser
for help on using the repository browser.