2 # Copyright (C) 2011 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
24 cat > configure.
in << 'END'
31 mkdir mdir1 mdir2 mdir3
33 cat > mdir
1/foo.
m4 << 'END'
34 AC_DEFUN
([AM_FOO_MACRO
], [am--foo
])
37 cat > mdir
2/bar.
m4 << 'END'
38 AC_DEFUN
([AM_BAR_MACRO
], [am--bar
])
41 cat > mdir
3/baz.
m4 << 'END'
42 AC_DEFUN
([AM_BAZ_MACRO
], [am--baz
])
45 ACLOCAL_PATH
=mdir1
:.
/mdir2
:`pwd`/mdir3
$ACLOCAL
48 # there should be no m4_include in aclocal.m4, even though ACLOCAL_PATH
49 # contains `mdir1' and `./mdir2' as relative directories. Only -I
50 # directories should be subject to file inclusion.
51 $FGREP m4_include aclocal.
m4 && Exit
1
53 $EGREP 'AM_(FOO|BAR|BAZ)_MACRO' configure
&& Exit
1
54 $FGREP 'am--foo' configure
55 $FGREP 'am--bar' configure
56 $FGREP 'am--baz' configure