2 # Copyright (C) 1998-2013 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Test for an odd conditional bug. Report from Matt Leach.
21 echo 'AM_CONDITIONAL([FOO], [true])' >> configure.ac
23 cat > Makefile.am << 'END'
26 helpdir = $(prefix)/Help
27 # The continuation line below must start with a Tab to see the bug.
28 help_DATA = a b c d e \
33 helpdir = $(prefix)/help
43 is $(help_DATA) == a b c d e f g h
47 # Older versions of this test checked that automake could process the above
48 # Makefile.am even with no AC_OUTPUT in configure. So continue to do this
49 # check, for completeness.
53 rm -rf autom4te*.cache
55 echo AC_OUTPUT >> configure.ac
56 touch aclocal.m4 # Avoid unnecessary firing the remake rules.
60 ./configure --prefix="$(pwd)/_inst"
65 for x in a b c d e f g h; do