Merge branch 'python-fix-pr10227' into maint
[automake.git] / t / depend5.sh
blob2bc6a8f5a43ea4413b36a10b8b62bd9fe199aeed
1 #! /bin/sh
2 # Copyright (C) 2008-2012 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 _AM_OUTPUT_DEPENDENCY_COMMANDS works with eval-style
18 # quoting in $CONFIG_FILES, done by newer Autoconf.
20 required=cc
21 . ./defs || exit 1
23 cat >>configure.ac << END
24 AC_PROG_CC
25 AC_OUTPUT
26 END
28 cat > Makefile.am << END
29 bin_PROGRAMS = foo
30 foo_SOURCES = foo.c foo.h
31 END
33 cat >foo.c << END
34 #include "foo.h"
35 END
36 : >foo.h
38 $ACLOCAL
39 $AUTOMAKE
40 $AUTOCONF
41 ./configure --enable-dependency-tracking
42 if test -d .deps; then
43 depdir=.deps
44 elif test -d _deps; then
45 depdir=_deps
46 else
47 depdir=
50 # For the fun of it, we should also cope with makefile
51 # names that contain weird characters, with Autoconf 2.62
52 # and newer.
53 # Pick the first name that the file system will accept.
54 for name in \
55 'weird name with $ `#() &! characters"' \
56 'weird name with $ `#() characters"' \
57 'weird name with characters'
59 cp Makefile.in "$name.in" && break || :
60 done
62 for arg in Makefile \
63 --file=Makefile \
64 "--file=$name"
66 rm -rf .deps _deps
67 ./config.status "$arg" depfiles >stdout 2>stderr ||
68 { cat stdout; cat stderr >&2; exit 1; }
69 cat stdout
70 cat stderr >&2
71 grep '[Nn]o such file' stderr && exit 1
73 if test -n "$depdir"; then
74 test -d $depdir || exit 1
76 done