Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / dirlist2.test
blobc40f57de2ff13cd5b76eb0eed6c0d0458ff8c66e
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2004, 2006 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 # Check dirlist globbing support.
18 # This test relies on m4/dirlist
20 . ./defs || Exit 1
22 set -e
24 cat > configure.in <<EOF
25 AC_INIT
26 AM_INIT_GUILE_MODULE
27 AM_FOO_BAR
28 EOF
30 mkdir dirlist21-test dirlist22-test
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
41 cat >dirlist22-test/dirlist22-check.m4 <<'END'
42 AC_DEFUN([AM_FOO_BAR],[
43 : foo bar baz
45 END
46 $ACLOCAL
47 $AUTOCONF
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
54 grep 'GUILE-VERSION' configure
55 grep 'foo bar baz' configure