Prefer https: URLs
[automake.git] / t / aclocal-acdir.sh
blob6d5ac9c6677a14f5a1386126b2d6472565bc5183
1 #! /bin/sh
2 # Copyright (C) 2011-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 # Test aclocal's '--automake-acdir' and '--system-acdir' options. Also
18 # check that stuff in the system acdir takes precedence over stuff in
19 # the automake acdir.
21 . test-init.sh
23 mkdir am sys
24 # FIXME: remove in Automake 2.0
25 mkdir am/internal
26 : > am/internal/ac-config-macro-dirs.m4
28 cat >> configure.ac <<'END'
29 MY_MACRO
30 END
32 cat > am/foo.m4 <<'END'
33 AC_DEFUN([AM_INIT_AUTOMAKE], [fake--init--automake])
34 END
36 cat > sys/foo.m4 <<'END'
37 AC_DEFUN([MY_MACRO], [my--macro])
38 END
40 $ACLOCAL --automake-acdir am
41 $AUTOCONF --force
42 $FGREP 'fake--init--automake' configure
43 $FGREP 'MY_MACRO' configure
45 rm -rf autom4te*.cache
47 $ACLOCAL --system-acdir sys
48 $AUTOCONF --force
49 $FGREP 'am__api_version' configure
50 $FGREP 'my--macro' configure
52 rm -rf autom4te*.cache
54 $ACLOCAL --automake-acdir am --system-acdir sys
55 $AUTOCONF --force
56 $FGREP 'fake--init--automake' configure
57 $FGREP 'my--macro' configure
59 rm -rf autom4te*.cache
61 $ACLOCAL --system-acdir sys --automake-acdir am
62 $AUTOCONF --force
63 $FGREP 'fake--init--automake' configure
64 $FGREP 'my--macro' configure
66 rm -rf autom4te*.cache
68 # Stuff in system acdir takes precedence over stuff in automake acdir.
69 cat > am/bar.m4 <<'END'
70 AC_DEFUN([MY_MACRO], [am--macro])
71 END
72 $ACLOCAL --automake-acdir am --system-acdir sys
73 $AUTOCONF --force
74 $FGREP 'fake--init--automake' configure
75 $FGREP 'my--macro' configure
76 $FGREP 'am--macro' configure && exit 1