2 # Copyright (C) 2001-2013 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 to make sure that depcomp and compile are added to DIST_COMMON.
18 # Report from Pavel Roskin. Report of problems with '--no-force' from
19 # Scott James Remnant (Debian #206299)
23 cat >> configure.ac << 'END'
25 AC_CONFIG_FILES([subdir/Makefile])
29 cat > Makefile.am << 'END'
36 cat > subdir/Makefile.am << 'END'
44 for opt in '' --no-force; do
48 $AUTOMAKE $opt --add-missing
53 for dir in . subdir; do
54 # FIXME: the logic of this check and other similar ones in other
55 # FIXME: 'distcom*.sh' files should be factored out in a common
56 # FIXME: subroutine in 'am-test-lib.sh'...
58 /^DIST_COMMON =.*\\\\$/ {
70 }" $dir/Makefile.in > $dir/dc.txt
73 cat dc.txt # For debugging.
74 cat subdir/dc.txt # Likewise.
76 $FGREP ' $(top_srcdir)/depcomp ' subdir/dc.txt
77 # The 'compile' script will be listed in the DIST_COMMON of the top-level
78 # Makefile because it's required in configure.ac (by AC_PROG_CC).
79 $FGREP ' $(top_srcdir)/compile ' dc.txt || $FGREP ' compile ' dc.txt