Revert Automake license to GPLv2+.
[platform/upstream/automake.git] / tests / sinclude.test
1 #! /bin/sh
2 # Copyright (C) 1998, 2001, 2002, 2003, 2005  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 # Test to see if `m4_sinclude' and `m4_include' works.
18
19 . ./defs || Exit 1
20
21 set -e
22
23 # Overwrite configure.in, because the default uses `sinclude' as package
24 # name and this play havoc with Autoconf on some platforms (`sinclude'
25 # is an m4 macro).
26 cat > configure.in <<EOF
27 AC_INIT([amsinclude], [1.0])
28 AM_INIT_AUTOMAKE
29 AC_CONFIG_FILES([Makefile])
30 sinclude([doesntexist.m4])
31 EOF
32
33 mkdir sub
34 cat > sub/p.m4 << 'END'
35 AC_SUBST(MAGICALPIG)
36 END
37
38 cat > sub/h.m4 << 'END'
39 AC_SUBST(MAGICALHOG)
40 END
41
42 cat > sub/g.m4 << 'END'
43 AC_SUBST(GREPME)
44 END
45
46 : > Makefile.am
47
48 echo 'sinclude(sub/g.m4)' >> acinclude.m4
49 echo 'm4_sinclude(sub/doesntexist.m4)' >> acinclude.m4
50
51 $ACLOCAL
52
53 echo 'm4_sinclude(sub/p.m4)' >> aclocal.m4
54 echo 'm4_include(sub/h.m4)' >> aclocal.m4
55
56 $AUTOMAKE
57
58 grep doesntexist Makefile.in && Exit 1
59 grep MAGICALPIG Makefile.in
60 grep MAGICALHOG Makefile.in
61 grep GREPME Makefile.in