aab2dafb6658a19fbc973bf70f31540aabd867b3
[platform/upstream/automake.git] / t / acloca13.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Make sure changes to m4_included files also cause aclocal.m4 to change.
18
19 . ./defs || Exit 1
20
21 cat >> configure.ac << 'END'
22 m4_include([somefile.m4])
23 AC_OUTPUT
24 END
25
26 cat >Makefile.am <<'EOF'
27 check-local:
28         test -f "$(srcdir)/somefile.m4"
29         test -f "$(srcdir)/m4/version1.m4"
30         test -f "$(srcdir)/m4/otherfile.m4"
31 EOF
32
33 mkdir m4
34
35 echo MACRO1 >somefile.m4
36 echo 'AC_PREREQ([2.58])' >m4/otherfile.m4
37
38 cat >m4/version1.m4 <<EOF
39 AC_DEFUN([MACRO1])
40 AC_DEFUN([MACRO2])
41 m4_sinclude(m4/otherfile.m4)
42 EOF
43
44 cat >m4/version2.m4 <<EOF
45 AC_DEFUN([MACRO1])
46 EOF
47
48 $ACLOCAL -I m4
49 grep version2 aclocal.m4
50 grep version1 aclocal.m4 && Exit 1
51
52 $sleep
53 echo MACRO2 >somefile.m4
54
55 $ACLOCAL -I m4
56 grep version2 aclocal.m4 && Exit 1
57 grep version1 aclocal.m4
58
59 $sleep
60 # aclocal.m4 should change if we touch otherfile.m4
61 touch m4/otherfile.m4
62 $sleep
63 $ACLOCAL -I m4
64 test $(ls -1t aclocal.m4 m4/otherfile.m4 | sed 1q) = aclocal.m4
65
66 $AUTOCONF
67 $AUTOMAKE
68 ./configure
69 $MAKE distcheck
70
71 :