2 # Copyright (C) 2011-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 # Check basic ACLOCAL_PATH support.
19 am_create_testdir
=empty
22 cat > configure.ac
<< 'END'
29 mkdir mdir1 mdir2 mdir3
31 cat > mdir
1/foo.
m4 << 'END'
32 AC_DEFUN
([AM_FOO_MACRO
], [am--foo
])
35 cat > mdir
2/bar.
m4 << 'END'
36 AC_DEFUN
([AM_BAR_MACRO
], [am--bar
])
39 cat > mdir
3/baz.
m4 << 'END'
40 AC_DEFUN
([AM_BAZ_MACRO
], [am--baz
])
43 ACLOCAL_PATH
=mdir1
:.
/mdir2
:$
(pwd)/mdir3
$ACLOCAL
46 # there should be no m4_include in aclocal.m4, even though ACLOCAL_PATH
47 # contains 'mdir1' and './mdir2' as relative directories. Only -I
48 # directories should be subject to file inclusion.
49 $FGREP m4_include aclocal.
m4 && exit 1
51 $EGREP 'AM_(FOO|BAR|BAZ)_MACRO' configure
&& exit 1
52 $FGREP 'am--foo' configure
53 $FGREP 'am--bar' configure
54 $FGREP 'am--baz' configure