Merge branch 'msvc'
[platform/upstream/automake.git] / tests / confh.test
1 #! /bin/sh
2 # Copyright (C) 1999, 2000, 2001, 2002, 2006, 2010 Free Software
3 # Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Test to make sure config.h works in a subdir.
19 # Report from Alexandre Oliva.
20
21 . ./defs || Exit 1
22
23 set -e
24
25 cat >> configure.in << 'END'
26 AM_CONFIG_HEADER([include/config.h])
27 END
28
29 : > Makefile.am
30 : > acconfig.h
31
32 mkdir include
33 : > include/Makefile.am
34 : > include/config.h.in
35
36 $ACLOCAL
37 $AUTOMAKE
38
39 perl -ne '
40 if (s/^DIST_COMMON *=//)
41 {
42   $_ .= <> while (s/\\$//);
43   $_ = " $_ ";
44   s/\s+/ /g;
45   print "$_\n";
46   exit 0;
47 }' Makefile.in > dc.txt
48 cat dc.txt # might be useful for debugging.
49 $FGREP ' acconfig.h ' dc.txt
50
51 # Make sure re-running automake in a different way generates same
52 # Makefile.in.
53 mv Makefile.in Makefile.sav
54 $ACLOCAL
55 $AUTOMAKE Makefile
56 diff Makefile.sav Makefile.in
57
58 :