Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / aclocal9.test
bloba4f8cb7526e06859c41f8e15aae02efae302d054
1 #! /bin/sh
2 # Copyright (C) 2003 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.
19 . ./defs || Exit 1
21 set -e
23 cat >> configure.in << 'END'
24 MACRO1
25 MACRO2
26 END
28 mkdir m4_1 m4_2
30 cat >m4_1/somedefs.m4 <<EOF
31 AC_DEFUN([MACRO1], [echo macro11 > foo])
32 AC_DEFUN([MACRO2], [echo macro21 >> foo])
33 EOF
35 cat >m4_2/somedefs.m4 <<EOF
36 AC_DEFUN([MACRO1], [echo macro12 > foo])
37 EOF
39 $ACLOCAL -I m4_1 -I m4_2
40 $AUTOCONF
41 ./configure
42 grep macro11 foo
43 grep macro21 foo
45 $ACLOCAL -I m4_2 -I m4_1
46 $AUTOCONF
47 ./configure
48 grep macro12 foo
49 grep macro21 foo