2 # Copyright (C) 2003, 2005, 2012 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 # 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.
27 cat >> configure.
in << '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])
40 cat >m4_
2/somedefs.
m4 <<EOF
41 AC_DEFUN([MACRO1], [echo macro12 >> foo])
44 cat >dirlist-test
/macro.
m4 <<EOF
45 AC_DEFUN([MACRO3], [echo macro3 >> foo])
48 $ACLOCAL -I m4_1
-I m4_2
54 grep MACRO3 aclocal.
m4
55 test ! -f m4_
1/macro.
m4
56 test ! -f m4_
2/macro.
m4
60 $ACLOCAL -I m4_2
-I m4_1
66 grep MACRO3 aclocal.
m4
67 test ! -f m4_
1/macro.
m4
68 test ! -f m4_
2/macro.
m4
72 $ACLOCAL -I m4_1
-I m4_2
--install
78 grep MACRO3 aclocal.
m4 && Exit
1
80 test ! -f m4_
2/macro.
m4
85 echo '#GREPME' >>dirlist-test
/macro.
m4
86 $ACLOCAL -I m4_1
-I m4_2
--install
92 grep MACRO3 aclocal.
m4 && Exit
1
93 grep GREPME m4_
1/macro.
m4 && Exit
1
95 test ! -f m4_
2/macro.
m4
96 diff aclocal.
m4 copy.
m4