Merge branch 'minor'
[automake.git] / t / pr2.sh
blob0a7a90daa6e31a525cb2b31582235962c88a7ba8
1 #! /bin/sh
2 # Copyright (C) 1999-2017 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 <https://www.gnu.org/licenses/>.
17 # Test for bug reported in PR 2.
18 # "make dist" fails for AC_OUTPUT(README.foo:templ/README.foo.in).
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.
30 . test-init.sh
32 cat >> configure.ac << 'END'
33 AC_OUTPUT([README.foo:templ/README.foo.in])
34 END
36 : > Makefile.am
38 mkdir templ
39 : > templ/README.foo.in
41 $ACLOCAL
42 $AUTOCONF
43 $AUTOMAKE
44 ./configure
45 $MAKE distdir
46 test -f $distdir/templ/README.foo.in