tests: make 'lzip.test' executable
[automake.git] / tests / autodist-configure-no-subdir.test
blobdb640c4950b100d2332c469112153b59e89ecd24
1 #! /bin/sh
2 # Copyright (C) 2011 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 <http://www.gnu.org/licenses/>.
17 # Check that `configure', `configure.ac' and `configure.in' are *not*
18 # automatically distributed when placed in a subdirectory.
19 # Related to automake bug#7819.
21 . ./defs || Exit 1
23 set -e
25 cat >> configure.in <<END
26 AC_CONFIG_FILES([sub/Makefile])
27 AC_OUTPUT
28 END
30 cat > Makefile.am <<'END'
31 SUBDIRS = sub
32 dontbuild = echo target $@ should not be built >&2; exit 1
33 sub/configure:
34 $(dontbuild)
35 sub/configure.ac:
36 $(dontbuild)
37 sub/configure.in:
38 $(dontbuild)
39 check-local: distdir
40 ls -l $(distdir)/sub
41 test ! -f $(distdir)/sub/configure
42 test ! -f $(distdir)/sub/configure.in
43 test ! -f $(distdir)/sub/configure.ac
44 END
46 mkdir sub
48 cat > sub/Makefile.am <<'END'
49 dontbuild = echo target $@ should not be built >&2; exit 1
50 configure:
51 $(dontbuild)
52 configure.ac:
53 $(dontbuild)
54 configure.in:
55 $(dontbuild)
56 check-local:
57 echo $(DISTFILES) | grep 'configure' && exit 1; :
58 echo $(DIST_COMMON) | grep 'configure' && exit 1; :
59 END
61 : > sub/configure.ac
62 : > sub/configure.in
63 : > sub/configure
65 $ACLOCAL
66 $AUTOMAKE
67 $AUTOCONF
69 ./configure
70 $MAKE check