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)
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 # Make sure the suggested 'distcleancheck_listfiles' in the manual works.
18 # The example Makefile.am we use is from the FAQ entry 'distcleancheck'.
23 cat >>configure.ac
<< 'END'
28 cat > Makefile.am
<< 'END'
29 # This Makefile.am is bogus. See @node{distcleancheck} in the manual
30 # for how to fix it properly.
35 # We write './foo.1' inside the rule on purpose, to avoid VPATH rewriting
36 # done by some 'make' implementations.
38 echo man page
for foo$
(EXEEXT
) > .
/foo
.1
40 ## Ignore warnings about overridden variables
41 AUTOMAKE_OPTIONS
= -Wno-override
42 distcleancheck_listfiles
= \
43 find .
-type f
-exec sh
-c 'test -f $(srcdir)/$$1 || echo $$1' \
48 int main () { return 0; }
59 # Now ensure that we really needed the override.
60 sed '/distcleancheck_listfiles/,$d' Makefile.am
> t
65 $MAKE distcheck
2>stderr
&& { cat srderr
>&2; exit 1; }
68 grep 'ERROR:.*files left in build directory after distclean' stderr
69 grep '^\./foo\.1$' stderr