maint: Update HACKING
[automake.git] / t / aclocal-dirlist.sh
blob7cea8f9fa3328a732e59d93046b06dea5fdafe15
1 #! /bin/sh
2 # Copyright (C) 2002-2017 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)
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 <https://www.gnu.org/licenses/>.
17 # Check dirlist support.
19 . test-init.sh
21 cat > configure.ac <<EOF
22 AC_INIT([$me], [1.0])
23 AM_INIT_GUILE_MODULE
24 EOF
26 mkdir acdir dirlist-test
27 echo ./dirlist-test > acdir/dirlist
29 cat >dirlist-test/dirlist-check.m4 <<'END'
30 AC_DEFUN([AM_INIT_GUILE_MODULE],[
31 . $srcdir/../GUILE-VERSION
32 AM_INIT_AUTOMAKE(foreign)
33 AC_CONFIG_AUX_DIR(..)
34 module=[$1]
35 AC_SUBST(module)])
36 END
38 cat >dirlist-test/init.m4 <<EOF
39 AC_DEFUN([AM_INIT_AUTOMAKE], [I should not be included])
40 EOF
42 $ACLOCAL --system-acdir acdir
43 $AUTOCONF
45 # There should be no m4_include in aclocal.m4, even though m4/dirlist
46 # contains './dirlist-test' as a relative directory. Only -I directories
47 # are subject to file inclusion.
48 grep m4_include aclocal.m4 && exit 1
50 grep 'GUILE-VERSION' configure
52 # This bug can occur only when we do a VPATH build of Automake
53 # but it's OK because VPATH builds are done by 'make distcheck'.
54 grep 'I should not be included' configure && exit 1