test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / pr2.sh
1 #! /bin/sh
2 # Copyright (C) 1999-2013 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 reported in PR 2.
18 # "make dist" fails for AC_OUTPUT(README.foo:templ/README.foo.in).
19 #
20 # == Report ==
21 # When my AC_OUTPUT macro in configure.ac contains something
22 # like the following (among the Makefiles)
23 #       README.foo:templ/README.foo.in
24 # the generated dist target in the Makefile.in fails,
25 # because DIST_COMMON will contain templ/README.foo.in
26 # and the dist target will try to copy templ/README.foo.in
27 # to the distribution directory before it creates a templ
28 # subdirectory in the distribution directory.
29
30 . test-init.sh
31
32 cat >> configure.ac << 'END'
33 AC_OUTPUT([README.foo:templ/README.foo.in])
34 END
35
36 : > Makefile.am
37
38 mkdir templ
39 : > templ/README.foo.in
40
41 $ACLOCAL
42 $AUTOCONF
43 $AUTOMAKE
44 ./configure
45 $MAKE distdir
46 test -f $distdir/templ/README.foo.in
47
48 :