2 # Copyright (C) 2000, 2001, 2002, 2010 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)
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 # Test for PR automake/87.
18 # "make distcheck" fails when two source dirs exist.
30 int main() { return 0; }
32 cat >$i/Makefile.am
<<EOF
38 echo "SUBDIRS = $subdirs" > Makefile.am
39 cat >configure.
in <<EOF
40 AC_INIT(`echo $subdirs | sed 's|\([a-z][a-z]*\).*|\1/\1.c|'`)
42 AM_INIT_AUTOMAKE($me, 1.0)
44 AC_OUTPUT(Makefile `echo $subdirs | sed 's|\([a-z][a-z]*\)|\1/Makefile|g'`)
57 # Regression test for bug where `.c.o:' is followed by blank line.
59 if test "$line" = ".c.o:"; then
61 if test -z "$next"; then
64 : # for shells with broken 'set -e'
68 done) < foo
/Makefile.
in || Exit
1