Revert Automake license to GPLv2+.
[platform/upstream/automake.git] / tests / dirlist2.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2004, 2006  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 # Check dirlist globbing support.
18 # This test relies on m4/dirlist
19
20 . ./defs || Exit 1
21
22 set -e
23
24 cat > configure.in <<EOF
25 AC_INIT
26 AM_INIT_GUILE_MODULE
27 AM_FOO_BAR
28 EOF
29
30 mkdir dirlist21-test dirlist22-test
31
32 cat >dirlist21-test/dirlist21-check.m4 <<'END'
33 AC_DEFUN([AM_INIT_GUILE_MODULE],[
34 . $srcdir/../GUILE-VERSION
35 AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
36 AC_CONFIG_AUX_DIR(..)
37 module=[$1]
38 AC_SUBST(module)])
39 END
40
41 cat >dirlist22-test/dirlist22-check.m4 <<'END'
42 AC_DEFUN([AM_FOO_BAR],[
43 : foo bar baz
44 ])
45 END
46 $ACLOCAL
47 $AUTOCONF
48
49 # there should be no m4_include in aclocal.m4, even tho m4/dirlist contains
50 # `./dirlist-test' as a relative directory.  Only -I directories are subject
51 # to file inclusion.
52 grep m4_include aclocal.m4 && Exit 1
53
54 grep 'GUILE-VERSION' configure
55 grep 'foo bar baz' configure
56
57 :