Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / pr220.test
blob2401e597267e578fc816e5937837b9d359c8183a
1 #! /bin/sh
2 # Copyright (C) 2001, 2002, 2004, 2008 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 3, 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 <http://www.gnu.org/licenses/>.
17 # Test for PR automake/220.
19 required=gcc
20 . ./defs || Exit 1
22 set -e
24 cat >main.c <<EOF
25 int main() { return 0; }
26 EOF
28 cat > Makefile.am << 'EOF'
29 if NEVER_TRUE
30 NEVER_DEFINED = missingfile.c
31 endif
33 bin_PROGRAMS = main
34 main_SOURCES = main.c $(NEVER_DEFINED)
35 EOF
37 cat >> configure.in << 'EOF'
38 AC_PROG_CC
39 AC_ARG_ENABLE(foo,
40 [ --enable-foo Enable foo],
41 [ if test "foo" = "bar" ; then
42 AM_CONDITIONAL(NEVER_TRUE, true)
43 else
44 AM_CONDITIONAL(NEVER_TRUE, false)
47 AC_OUTPUT
48 EOF
50 mkdir build
52 $ACLOCAL
53 $AUTOCONF
54 $AUTOMAKE -a
56 cd build
57 # configure should fail since we've done something invalid.
58 ../configure 2>stderr && { cat stderr >&2; Exit 1; }
59 cat stderr >&2
60 grep NEVER_TRUE stderr