Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / acloca10.test
blob07a9878e78ee58065df0fbb719006584b9fa30b3
1 #! /bin/sh
2 # Copyright (C) 2003, 2005 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 # Make sure aclocal define macros in the same order as -I's.
18 # This is the same as aclocal9.test, with the macro calls reversed.
19 # (It did make a difference.)
21 # Also check for --install.
23 . ./defs || Exit 1
25 set -e
27 cat >> configure.in << 'END'
28 MACRO2
29 MACRO1
30 MACRO3
31 END
33 mkdir m4_1 m4_2 dirlist-test
35 cat >m4_1/somedefs.m4 <<EOF
36 AC_DEFUN([MACRO1], [echo macro11 >> foo])
37 AC_DEFUN([MACRO2], [echo macro21 > foo])
38 EOF
40 cat >m4_2/somedefs.m4 <<EOF
41 AC_DEFUN([MACRO1], [echo macro12 >> foo])
42 EOF
44 cat >dirlist-test/macro.m4 <<EOF
45 AC_DEFUN([MACRO3], [echo macro3 >> foo])
46 EOF
48 $ACLOCAL -I m4_1 -I m4_2
49 $AUTOCONF
50 ./configure
51 grep macro11 foo
52 grep macro21 foo
53 grep macro3 foo
54 grep MACRO3 aclocal.m4
55 test ! -f m4_1/macro.m4
56 test ! -f m4_2/macro.m4
58 $ACLOCAL -I m4_2 -I m4_1
59 $AUTOCONF
60 ./configure
61 grep macro12 foo
62 grep macro21 foo
63 grep macro3 foo
64 grep MACRO3 aclocal.m4
65 test ! -f m4_1/macro.m4
66 test ! -f m4_2/macro.m4
68 ACLOCAL_TESTSUITE_FLAGS='-I m4_1 -I m4_2'
69 $ACLOCAL --install
70 $AUTOCONF
71 ./configure
72 grep macro11 foo
73 grep macro21 foo
74 grep macro3 foo
75 grep MACRO3 aclocal.m4 && Exit 1
76 test -f m4_1/macro.m4
77 test ! -f m4_2/macro.m4
78 cp aclocal.m4 copy.m4
80 echo '#GREPME' >>dirlist-test/macro.m4
81 $ACLOCAL --install
82 $AUTOCONF
83 ./configure
84 grep macro11 foo
85 grep macro21 foo
86 grep macro3 foo
87 grep MACRO3 aclocal.m4 && Exit 1
88 grep GREPME m4_1/macro.m4 && Exit 1
89 test -f m4_1/macro.m4
90 test ! -f m4_2/macro.m4
91 diff aclocal.m4 copy.m4