Merge branch 'simplify-exit-trap-workaround' into maint
[platform/upstream/automake.git] / t / silent-configsite.sh
1 #!/bin/sh
2 # Copyright (C) 2010-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 # Check that the user can control default mode of silent-rules
18 # from config.site, and that this default can be overridden from
19 # either the ./configure or make command line.
20
21 . ./defs || exit 1
22
23 cat >> configure.ac <<'EOF'
24 AM_SILENT_RULES
25 AC_OUTPUT
26 EOF
27
28 cat > Makefile.am <<'EOF'
29 .PHONY: test-silent test-nosilent
30 test-silent:
31         test x'$(AM_DEFAULT_VERBOSITY)' = x'0'
32 test-nosilent:
33         test x'$(AM_DEFAULT_VERBOSITY)' = x'1'
34 EOF
35
36 unset enable_silent_rules || :
37
38 : 'No explicit default in configure.ac, enable by default in config.site'
39
40 $ACLOCAL
41 $AUTOCONF
42 $AUTOMAKE --add-missing
43 echo "enable_silent_rules=\${enable_silent_rules-yes}" > config.site
44 CONFIG_SITE=./config.site ./configure
45 $MAKE test-silent
46 $MAKE distclean
47 # Command line should win over default values in config.site.
48 CONFIG_SITE=./config.site ./configure --disable-silent-rules
49 $MAKE test-nosilent
50 $MAKE distclean
51
52 : 'Disable by default in configure.ac, enable by default in config.site'
53
54 sed 's/^AM_SILENT_RULES/&([no])/' configure.ac > configure.tmp
55 mv -f configure.tmp configure.ac
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE --add-missing
59 echo "enable_silent_rules=\${enable_silent_rules-yes}" > config.site
60 CONFIG_SITE=./config.site ./configure
61 $MAKE test-silent
62 # Command line should win over default values in config.site.
63 $MAKE distclean
64 CONFIG_SITE=./config.site ./configure --disable-silent-rules
65 $MAKE test-nosilent
66 $MAKE distclean
67
68 : 'Enable by default in configure.ac, disable by default in config.site'
69
70 sed 's/^AM_SILENT_RULES/&([yes])/' configure.ac > configure.tmp
71 mv -f configure.tmp configure.ac
72 $ACLOCAL
73 $AUTOCONF
74 $AUTOMAKE --add-missing
75 echo "enable_silent_rules=\${enable_silent_rules-no}" > config.site
76 CONFIG_SITE=./config.site ./configure
77 $MAKE test-nosilent
78 $MAKE distclean
79 # Command line should win over default values in config.site.
80 CONFIG_SITE=./config.site ./configure --enable-silent-rules
81 $MAKE test-silent
82 $MAKE distclean
83
84 :