Merge branch 'minor'
[automake.git] / t / depend5.sh
blobce0a703158189d3c1d7fdacbcb0feccb77db334f
1 #! /bin/sh
2 # Copyright (C) 2008-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 # Check that _AM_OUTPUT_DEPENDENCY_COMMANDS works with eval-style
18 # quoting in $CONFIG_FILES, done by newer Autoconf.
20 required=cc
21 . test-init.sh
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 names
51 # that contain weird characters and newer.
52 # Pick the first name that the file system will accept.
53 for name in \
54 'weird name with $ `#() &! characters"' \
55 'weird name with $ `#() characters"' \
56 'weird name with characters'
58 cp Makefile.in "$name.in" && break || :
59 done
61 for arg in Makefile \
62 --file=Makefile \
63 "--file=$name"
65 rm -rf .deps _deps
66 ./config.status "$arg" depfiles >stdout 2>stderr ||
67 { cat stdout; cat stderr >&2; exit 1; }
68 cat stdout
69 cat stderr >&2
70 grep '[Nn]o such file' stderr && exit 1
72 if test -n "$depdir"; then
73 test -d $depdir || exit 1
75 done