test: protect more yacc declarations against C vs. C++ linkage.
[automake.git] / t / cond6.sh
blobfc6bd0ee3f930ffec4104dc0004a6b5abc901c23
1 #! /bin/sh
2 # Copyright (C) 1998-2024 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)
7 # any later version.
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 <https://www.gnu.org/licenses/>.
17 # Test for an odd conditional bug. Report from Matt Leach.
19 . test-init.sh
21 echo 'AM_CONDITIONAL([FOO], [true])' >> configure.ac
23 cat > Makefile.am << 'END'
24 if FOO
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 \
29 f g h
31 else
33 helpdir = $(prefix)/help
34 help_DATA = foo
36 endif
38 a b c d e f g h:
39 touch $@
41 .PHONY: test
42 test:
43 is $(help_DATA) == a b c d e f g h
44 END
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.
50 $ACLOCAL
51 $AUTOMAKE
53 rm -rf autom4te*.cache
55 echo AC_OUTPUT >> configure.ac
56 touch aclocal.m4 # Avoid unnecessary firing the remake rules.
57 $AUTOCONF
58 $AUTOMAKE Makefile
60 ./configure --prefix="$(pwd)/_inst"
62 $MAKE test
64 $MAKE install
65 for x in a b c d e f g h; do
66 test -f _inst/Help/$x
67 done