Merge branch master into maint after 1.12 release
[platform/upstream/automake.git] / t / install2.sh
1 #! /bin/sh
2 # Copyright (C) 1999-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 for bug in 'make dist'
18 # From Pavel Roskin.
19
20 . ./defs || Exit 1
21
22 cat > configure.ac << 'END'
23 AC_INIT
24 dnl Prevent automake from looking in .. and ../..
25 AC_CONFIG_AUX_DIR(.)
26 AM_INIT_AUTOMAKE(foo, 0.1)
27 AC_OUTPUT(Makefile)
28 END
29
30 cat > Makefile.am << 'END'
31 SUBDIRS = .
32 END
33
34 $ACLOCAL
35 $AUTOCONF
36 $AUTOMAKE -a
37
38 chmod 000 Makefile.am
39
40 # On some systems (like DOS and Windows), files are always readable.
41 test ! -r Makefile.am || skip_ "cannot drop file read permissions"
42
43 ./configure
44
45 # 'dist' should fail because we can't copy Makefile.am.
46 if $MAKE dist; then
47   Exit 1
48 else
49   Exit 0
50 fi