cosmetics: remove trailing whitespace in some files
[platform/upstream/automake.git] / t / aclocal-acdir.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Test aclocal's '--automake-acdir' and '--system-acdir' options.  Also
18 # check that stuff in the automake acdir takes precedence over stuff in
19 # the system acdir.
20
21 . ./defs || Exit 1
22
23 mkdir am sys
24
25 cat >> configure.ac <<'END'
26 MY_MACRO
27 END
28
29 cat > am/foo.m4 <<'END'
30 AC_DEFUN([AM_INIT_AUTOMAKE], [fake--init--automake])
31 END
32
33 cat > sys/foo.m4 <<'END'
34 AC_DEFUN([MY_MACRO], [my--macro])
35 END
36
37 $ACLOCAL --automake-acdir am
38 $AUTOCONF --force
39 $FGREP 'fake--init--automake' configure
40 $FGREP 'MY_MACRO' configure
41
42 rm -rf autom4te*.cache
43
44 $ACLOCAL --system-acdir sys
45 $AUTOCONF --force
46 $FGREP 'am__api_version' configure
47 $FGREP 'my--macro' configure
48
49 rm -rf autom4te*.cache
50
51 $ACLOCAL --automake-acdir am --system-acdir sys
52 $AUTOCONF --force
53 $FGREP 'fake--init--automake' configure
54 $FGREP 'my--macro' configure
55
56 rm -rf autom4te*.cache
57
58 $ACLOCAL --system-acdir sys --automake-acdir am
59 $AUTOCONF --force
60 $FGREP 'fake--init--automake' configure
61 $FGREP 'my--macro' configure
62
63 rm -rf autom4te*.cache
64
65 # Stuff in automake acdir takes precedence over stuff in system acdir.
66 cat > am/bar.m4 <<'END'
67 AC_DEFUN([MY_MACRO], [am--macro])
68 END
69 $ACLOCAL --automake-acdir am --system-acdir sys
70 $AUTOCONF --force
71 $FGREP 'fake--init--automake' configure
72 $FGREP 'am--macro' configure
73 $FGREP 'my--macro' configure && Exit 1 # Just to be sure.
74
75 :